From befea6314e7a2513223f00a1afb7d2f2d5d75259 Mon Sep 17 00:00:00 2001 From: tia-chen Date: Mon, 19 Feb 2024 17:36:44 -0500 Subject: [PATCH 01/10] In progress: reverse-playback current problem: - the observation dictionary is not documented as expected. The player positions do not seem to be changing. --- env.py | 3 +- game.py | 11 +- replay_agent_actions.py | 15 +- socket_env.py | 133 +- stole | 391 + stole_obs | 142715 +++++++++++++++++++++++++++++++++++++ 6 files changed, 143243 insertions(+), 25 deletions(-) create mode 100644 stole create mode 100644 stole_obs diff --git a/env.py b/env.py index f98882b..b1e41f4 100755 --- a/env.py +++ b/env.py @@ -76,7 +76,8 @@ def reset(self,seed = None, options = None, obs=None): sprite_paths=self.player_sprites, record_path=self.record_path, stay_alive=self.stay_alive, - record_actions=self.record_actions) + record_actions=self.record_actions + ) self.unwrapped.game.set_up() if obs is not None: self.unwrapped.game.set_observation(obs) diff --git a/game.py b/game.py index 3f34e04..16ed188 100755 --- a/game.py +++ b/game.py @@ -113,6 +113,9 @@ def __init__(self, num_players=1, player_speed=0.07, keyboard_input=False, rende self.record_actions = record_actions self.action_history = [] + self.is_playback = False + self.game_state_observations = {} # Used to reverse back to a certain state in the game + if not headless: if follow_player == -1: config.SCALE = 32 @@ -884,6 +887,10 @@ def check_register_zones(self, register): def write_action_history(self, filename): with open(filename, "w") as f: history = "" - for action in self.action_history: - history += action + '\n' + for row in self.action_history: + action = [] + for i, each in enumerate(row.split(" ")): + if i != 2: + action.append(each) + history += " ".join(action) + '\n' f.write(history) diff --git a/replay_agent_actions.py b/replay_agent_actions.py index 51c3af2..46d569b 100644 --- a/replay_agent_actions.py +++ b/replay_agent_actions.py @@ -28,6 +28,14 @@ sock_game = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock_game.connect((HOST, PORT)) + print("Sending playback signal") + sock_game.send(str.encode("Playback")) # send action to env + + output = recv_socket_data(sock_game) # get observation from env + output = json.loads(output) + + + actions = [] with open(args.filename, "r") as file: for line in file: @@ -38,7 +46,8 @@ print("Sending action: ", action) sock_game.send(str.encode(action)) # send action to env - output = recv_socket_data(sock_game) # get observation from env - output = json.loads(output) + output = recv_socket_data(sock_game) # get observation from env (wait for response before sending next command) + # output = json.loads(output) # Put back if you want to inspect received message - print("JSON: ", output) + # print("JSON: ", output) + exit() diff --git a/socket_env.py b/socket_env.py index 7794daf..9dcb0ba 100755 --- a/socket_env.py +++ b/socket_env.py @@ -2,6 +2,7 @@ import argparse import datetime import json +from pprint import pprint import selectors import socket import types @@ -24,17 +25,80 @@ def __init__(self, env, keyboard_input=False): self.running = True def single_player_action(self, action, arg=0): - if self.env.unwrapped.game.record_actions: - self.env.unwrapped.game.action_history.append( - str(self.curr_player) + " " + str(action).split(".")[1] + " " + str(datetime.datetime.now().timestamp())) return self.curr_player, action, arg + def record_action_and_obs(self, action, obs, arg=0): + # Record action history + timestamp = datetime.datetime.now().timestamp() + self.env.unwrapped.game.action_history.append( + str(self.curr_player) + " " + str(action).split(".")[-1] + " " + str(arg) + " " + str(timestamp)) + + # Record observation + self.env.unwrapped.game.game_state_observations[str(timestamp)] = obs + def handle_events(self): if self.env.unwrapped.game.players[self.curr_player].interacting: self.handle_interactive_events() else: self.handle_exploratory_events() self.env.render(mode='violations') + + def reverse_playback(self): + # 1. get correct timestamp from action history -20 + # 2. use that timestamp to get obs + # use set_obs(game, obs) to reset obs + # 3. replay all actions in the last 20 opeations -- goal does not modify steps or get recoreded twice + history_len = len(self.env.unwrapped.game.action_history) + print("history_len: ", history_len) + + replay_index = 0 if history_len < 20 else -20 + print("replay_index: ", replay_index) + timestamp = self.env.unwrapped.game.action_history[replay_index].split(" ")[-1] + print("timestamp: ", timestamp) + obs = self.env.unwrapped.game.game_state_observations[timestamp] + + + # with open("obs_prior", "w") as f: + # f.write(str(self.env.unwrapped.game.game_state_observations[self.env.unwrapped.game.action_history[10].split(" ")[-1]])) + + self.env.unwrapped.game.set_observation(obs) + env.render() + # self.env.unwrapped.game.update() + obs = self.env.unwrapped.game.observation(True) + + # with open("obs", "w") as f: + # from pprint import PrettyPrinter + # pp = PrettyPrinter(stream=f) + # pp.pprint(self.env.unwrapped.game.game_state_observations) + + # with open("obs_after", "w") as f: + # f.write(str(self.env.unwrapped.game.game_state_observations[self.env.unwrapped.game.action_history[30].split(" ")[-1]])) + + print("history_len: ", history_len) + + step_count = self.env.unwrapped.step_count # to preserve original step count + + for action_str in self.env.unwrapped.game.action_history[replay_index + 1:]: + print("action_str.split(" ")[:-1]: ", action_str.split(" ")[:-1]) + action_list = action_str.split(" ")[:-1] + action_list[0] = int(action_list[0]) + action_list[1] = ACTION_COMMANDS.index(action_list[1]) + self.env.step(action_list) + + self.env.unwrapped.step_count = step_count + + def pause_game(self): + waiting = True + while waiting: + for event in pygame.event.get(): + if event.type == pygame.QUIT or (event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE): + self.env.unwrapped.game.running = False + elif event.type == pygame.KEYDOWN and event.key == pygame.K_p: + waiting = False + elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: + # TIA NOTES: If we want to implement a revert function in + # keyboard input, we can slightly modify this to accomodate + self.reverse_playback() def handle_exploratory_events(self): player = self.env.unwrapped.game.players[self.curr_player] @@ -45,12 +109,18 @@ def handle_exploratory_events(self): filename = input("Please enter a filename for saving the state.\n>>> ") self.env.unwrapped.game.save_state(filename) print("State saved to {filename}.".format(filename=filename)) + elif self.env.unwrapped.game.is_playback: + if event.type == pygame.KEYDOWN and event.key == pygame.K_p: + self.pause_game() + elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: + self.reverse_playback() elif event.type == pygame.KEYDOWN and event.key == pygame.K_r: self.env.unwrapped.game.toggle_record() elif self.keyboard_input: if event.type == pygame.KEYDOWN: if event.key == pygame.K_RETURN: - self.env.step(self.single_player_action(PlayerAction.INTERACT)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.INTERACT)) + self.record_action_and_obs(PlayerAction.INTERACT, obs) # i key shows inventory elif event.key == pygame.K_i: player.render_shopping_list = False @@ -63,8 +133,8 @@ def handle_exploratory_events(self): player.interacting = True elif event.key == pygame.K_c: - self.env.step(self.single_player_action(PlayerAction.TOGGLE)) - + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.TOGGLE)) + self.record_action_and_obs(PlayerAction.TOGGLE, obs) # switch players (up to 9 players) else: for i in range(1, len(self.env.unwrapped.game.players) + 1): @@ -77,20 +147,25 @@ def handle_exploratory_events(self): # player stands still if not moving elif event.type == pygame.KEYUP: - self.env.step(self.single_player_action(PlayerAction.NOP)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NOP)) + self.record_action_and_obs(PlayerAction.NOP, obs) if self.keyboard_input: keys = pygame.key.get_pressed() if keys[pygame.K_UP]: # up - self.env.step(self.single_player_action(PlayerAction.NORTH)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NORTH)) + self.record_action_and_obs(PlayerAction.NORTH, obs) elif keys[pygame.K_DOWN]: # down - self.env.step(self.single_player_action(PlayerAction.SOUTH)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.SOUTH)) + self.record_action_and_obs(PlayerAction.SOUTH, obs) elif keys[pygame.K_LEFT]: # left - self.env.step(self.single_player_action(PlayerAction.WEST)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.WEST)) + self.record_action_and_obs(PlayerAction.WEST, obs) elif keys[pygame.K_RIGHT]: # right - self.env.step(self.single_player_action(PlayerAction.EAST)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.EAST)) + self.record_action_and_obs(PlayerAction.EAST, obs) self.running = self.env.unwrapped.game.running @@ -103,11 +178,13 @@ def handle_interactive_events(self): if event.type == pygame.KEYDOWN and self.keyboard_input: # b key cancels interaction if event.key == pygame.K_b: - self.env.step(self.single_player_action(PlayerAction.CANCEL)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.CANCEL)) + self.record_action_and_obs(PlayerAction.CANCEL, obs) # return key continues interaction elif event.key == pygame.K_RETURN: - self.env.step(self.single_player_action(PlayerAction.INTERACT)) + obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.INTERACT)) + self.record_action_and_obs(PlayerAction.INTERACT, obs) # i key turns off inventory rendering elif event.key == pygame.K_i: if player.render_inventory: @@ -153,6 +230,8 @@ def get_action_json(action, env_, obs, reward, done, info_=None): def is_single_player(command_): return ',' not in command_ +def is_playback_mode(command_): + return command == "Playback" def get_player_and_command(command_): split_command = command_.split(' ') @@ -335,7 +414,7 @@ def accept_wrapper(sock): curr_action = [(0,0)] * env.unwrapped.num_players e = [] if not args.headless: - handler.handle_events() + handler.handle_events() # TIA TODO: INJECTION OF KEYBOARD COMMANDS env.render() for key, mask in events: if key.data is None: @@ -350,6 +429,7 @@ def accept_wrapper(sock): if len(recv_data) < 4096: # We've hit the end of the input stream; now we process the input command = data.inb.decode().strip() + # print("printing command received: ", command) data.inb = b'' if command.startswith("SET"): obs = command[4:] @@ -359,6 +439,9 @@ def accept_wrapper(sock): json_to_send = get_action_json("SET", env, obs_to_return, 0., False, None) data = key.data data.outb = str.encode(json.dumps(json_to_send) + "\n") + # TIA TODO: IN HERE ADD CONDITION TO CHECK IF IT IS A MESSAGE IDENTIFYING PLAYBACK -- DONE + if is_playback_mode(command): + env.unwrapped.game.is_playback = True if is_single_player(command): player, command, arg = get_player_and_command(command) e.append((key, mask, command)) @@ -380,12 +463,18 @@ def accept_wrapper(sock): sent = sock.send(data.outb) # Should be ready to write data.outb = data.outb[sent:] if should_perform_action: - for index, player in enumerate(curr_action): - env.unwrapped.game.action_history.append( - str(index) + " " + ACTION_COMMANDS[player[0]] + " " + - str(datetime.datetime.now().timestamp()) - ) obs, reward, done, info = env.step(tuple(curr_action)) + + for index, player in enumerate(curr_action): + print("index: ", index) + print("player: ", player) + # print("printing ACTION_COMMANDS[player[0]]:", ACTION_COMMANDS[player[0]]) + handler.record_action_and_obs(ACTION_COMMANDS[player[0]], obs) + # env.unwrapped.game.action_history.append( + # str(index) + " " + ACTION_COMMANDS[player[0]] + " " + + # str(datetime.datetime.now().timestamp()) + # ) #TIA TODO: RECORD OBSERVATION + UPDATE RECORDING ACTION HISTORY -- DONE + for key, mask, command in e: json_to_send = get_action_json(command, env, obs, reward, done, info) data = key.data @@ -395,3 +484,9 @@ def accept_wrapper(sock): if env.unwrapped.game.record_actions: filename = input("Please enter a filename for saving the action history.\n>>> ") env.unwrapped.game.write_action_history(filename) + + with open(filename + "_obs", "w") as f: + from pprint import PrettyPrinter + pp = PrettyPrinter(stream=f) + pp.pprint(handler.env.unwrapped.game.game_state_observations) + diff --git a/stole b/stole new file mode 100644 index 0000000..75645ef --- /dev/null +++ b/stole @@ -0,0 +1,391 @@ +0 EAST 1708372628.294733 +0 EAST 1708372628.305539 +0 EAST 1708372628.315989 +0 EAST 1708372628.327249 +0 EAST 1708372628.338668 +0 EAST 1708372628.349801 +0 EAST 1708372628.360648 +0 EAST 1708372628.371342 +0 EAST 1708372628.382323 +0 EAST 1708372628.401436 +0 EAST 1708372628.412897 +0 EAST 1708372628.423857 +0 EAST 1708372628.434726 +0 EAST 1708372628.451365 +0 EAST 1708372628.465956 +0 EAST 1708372628.477081 +0 EAST 1708372628.487845 +0 EAST 1708372628.498632 +0 EAST 1708372628.509556 +0 EAST 1708372628.520126 +0 EAST 1708372628.530943 +0 EAST 1708372628.542 +0 EAST 1708372628.552704 +0 EAST 1708372628.56366 +0 EAST 1708372628.584818 +0 EAST 1708372628.595826 +0 EAST 1708372628.606671 +0 EAST 1708372628.617895 +0 EAST 1708372628.634558 +0 EAST 1708372628.649896 +0 EAST 1708372628.667761 +0 NOP 1708372628.682148 +0 NORTH 1708372628.860943 +0 NORTH 1708372628.87158 +0 NORTH 1708372628.882196 +0 NORTH 1708372628.892897 +0 NORTH 1708372628.903809 +0 NORTH 1708372628.914746 +0 NORTH 1708372628.925718 +0 NORTH 1708372628.93623 +0 NORTH 1708372628.947024 +0 NOP 1708372628.967794 +0 INTERACT 1708372630.380293 +0 INTERACT 1708372631.149568 +0 NOP 1708372631.232244 +0 EAST 1708372631.424592 +0 EAST 1708372631.435563 +0 EAST 1708372631.446594 +0 EAST 1708372631.457428 +0 EAST 1708372631.468703 +0 EAST 1708372631.479715 +0 EAST 1708372631.490495 +0 EAST 1708372631.501721 +0 EAST 1708372631.513256 +0 EAST 1708372631.534752 +0 EAST 1708372631.550981 +0 EAST 1708372631.567835 +0 EAST 1708372631.583582 +0 EAST 1708372631.594659 +0 EAST 1708372631.60572 +0 EAST 1708372631.617256 +0 EAST 1708372631.628598 +0 EAST 1708372631.639855 +0 EAST 1708372631.651206 +0 EAST 1708372631.662542 +0 EAST 1708372631.673735 +0 EAST 1708372631.685103 +0 EAST 1708372631.701316 +0 EAST 1708372631.713002 +0 EAST 1708372631.734664 +0 EAST 1708372631.751226 +0 EAST 1708372631.762701 +0 EAST 1708372631.774723 +0 EAST 1708372631.786092 +0 EAST 1708372631.80112 +0 EAST 1708372631.812843 +0 EAST 1708372631.834578 +0 EAST 1708372631.851331 +0 EAST 1708372631.884355 +0 EAST 1708372631.896118 +0 EAST 1708372631.907557 +0 EAST 1708372631.919179 +0 EAST 1708372631.931061 +0 EAST 1708372631.942803 +0 EAST 1708372631.954454 +0 EAST 1708372631.966162 +0 EAST 1708372631.977887 +0 EAST 1708372631.989458 +0 EAST 1708372632.001107 +0 EAST 1708372632.017945 +0 EAST 1708372632.029397 +0 EAST 1708372632.040619 +0 EAST 1708372632.051914 +0 EAST 1708372632.063226 +0 EAST 1708372632.074453 +0 EAST 1708372632.085856 +0 EAST 1708372632.097377 +0 EAST 1708372632.108868 +0 EAST 1708372632.119831 +0 EAST 1708372632.131294 +0 EAST 1708372632.151263 +0 EAST 1708372632.167172 +0 EAST 1708372632.178591 +0 EAST 1708372632.190096 +0 EAST 1708372632.201322 +0 EAST 1708372632.212837 +0 EAST 1708372632.224199 +0 EAST 1708372632.235179 +0 EAST 1708372632.246547 +0 EAST 1708372632.257885 +0 EAST 1708372632.26942 +0 EAST 1708372632.280749 +0 EAST 1708372632.292076 +0 EAST 1708372632.303174 +0 EAST 1708372632.31435 +0 NOP 1708372632.334659 +0 WEST 1708372633.664365 +0 WEST 1708372633.675268 +0 WEST 1708372633.686092 +0 WEST 1708372633.697258 +0 WEST 1708372633.709227 +0 WEST 1708372633.720403 +0 WEST 1708372633.731713 +0 WEST 1708372633.742929 +0 WEST 1708372633.754 +0 WEST 1708372633.765362 +0 WEST 1708372633.784637 +0 WEST 1708372633.796036 +0 WEST 1708372633.807447 +0 WEST 1708372633.818674 +0 WEST 1708372633.830134 +0 WEST 1708372633.841226 +0 WEST 1708372633.852579 +0 WEST 1708372633.863802 +0 NOP 1708372633.884685 +0 NORTH 1708372634.653932 +0 NORTH 1708372634.665043 +0 NORTH 1708372634.676509 +0 NORTH 1708372634.687664 +0 NORTH 1708372634.698934 +0 NORTH 1708372634.710518 +0 NORTH 1708372634.721656 +0 NORTH 1708372634.733151 +0 NORTH 1708372634.751169 +0 NORTH 1708372634.762607 +0 NORTH 1708372634.773861 +0 NORTH 1708372634.785201 +0 NOP 1708372634.796612 +0 EAST 1708372635.086489 +0 EAST 1708372635.098134 +0 EAST 1708372635.109282 +0 EAST 1708372635.120376 +0 EAST 1708372635.131745 +0 EAST 1708372635.1431 +0 EAST 1708372635.154058 +0 EAST 1708372635.165504 +0 EAST 1708372635.184626 +0 EAST 1708372635.195899 +0 EAST 1708372635.206929 +0 EAST 1708372635.218301 +0 EAST 1708372635.229528 +0 EAST 1708372635.240742 +0 EAST 1708372635.251731 +0 EAST 1708372635.263019 +0 EAST 1708372635.274048 +0 NOP 1708372635.285276 +0 EAST 1708372635.604336 +0 EAST 1708372635.615176 +0 EAST 1708372635.626308 +0 EAST 1708372635.637309 +0 EAST 1708372635.648435 +0 EAST 1708372635.659634 +0 EAST 1708372635.670631 +0 EAST 1708372635.681894 +0 EAST 1708372635.701255 +0 EAST 1708372635.712641 +0 NOP 1708372635.723809 +0 NORTH 1708372635.851209 +0 NORTH 1708372635.862071 +0 NORTH 1708372635.872968 +0 NORTH 1708372635.884108 +0 NORTH 1708372635.895294 +0 NORTH 1708372635.906554 +0 NORTH 1708372635.917766 +0 NORTH 1708372635.92897 +0 NORTH 1708372635.940086 +0 NORTH 1708372635.951408 +0 NORTH 1708372635.967853 +0 NORTH 1708372635.983688 +0 NORTH 1708372635.995146 +0 NORTH 1708372636.006289 +0 NORTH 1708372636.017717 +0 NORTH 1708372636.029217 +0 NORTH 1708372636.040577 +0 NORTH 1708372636.051937 +0 NORTH 1708372636.063619 +0 NORTH 1708372636.075072 +0 NORTH 1708372636.086201 +0 NORTH 1708372636.097616 +0 NORTH 1708372636.109255 +0 NORTH 1708372636.120708 +0 NORTH 1708372636.132322 +0 NORTH 1708372636.151284 +0 NORTH 1708372636.162966 +0 NORTH 1708372636.174566 +0 NORTH 1708372636.185936 +0 NORTH 1708372636.197237 +0 NOP 1708372636.209257 +0 WEST 1708372636.209605 +0 WEST 1708372636.221015 +0 WEST 1708372636.232522 +0 WEST 1708372636.251352 +0 WEST 1708372636.262852 +0 WEST 1708372636.274092 +0 WEST 1708372636.285463 +0 WEST 1708372636.297047 +0 WEST 1708372636.30842 +0 WEST 1708372636.319682 +0 WEST 1708372636.330944 +0 WEST 1708372636.342412 +0 WEST 1708372636.353601 +0 WEST 1708372636.364927 +0 WEST 1708372636.376382 +0 WEST 1708372636.387694 +0 WEST 1708372636.399302 +0 WEST 1708372636.410766 +0 WEST 1708372636.42198 +0 WEST 1708372636.433461 +0 WEST 1708372636.451285 +0 WEST 1708372636.462821 +0 WEST 1708372636.474272 +0 WEST 1708372636.485883 +0 WEST 1708372636.49739 +0 WEST 1708372636.508887 +0 WEST 1708372636.520146 +0 WEST 1708372636.531541 +0 WEST 1708372636.543018 +0 WEST 1708372636.554196 +0 SOUTH 1708372636.565915 +0 SOUTH 1708372636.584638 +0 SOUTH 1708372636.596235 +0 NOP 1708372636.607775 +0 SOUTH 1708372636.608123 +0 SOUTH 1708372636.61936 +0 SOUTH 1708372636.630869 +0 SOUTH 1708372636.642431 +0 SOUTH 1708372636.654291 +0 SOUTH 1708372636.665994 +0 SOUTH 1708372636.684287 +0 SOUTH 1708372636.699335 +0 SOUTH 1708372636.71085 +0 SOUTH 1708372636.722341 +0 SOUTH 1708372636.733606 +0 SOUTH 1708372636.745032 +0 SOUTH 1708372636.756346 +0 SOUTH 1708372636.767431 +0 SOUTH 1708372636.778709 +0 SOUTH 1708372636.789774 +0 SOUTH 1708372636.801402 +0 NOP 1708372636.812559 +0 WEST 1708372636.812883 +0 WEST 1708372636.824101 +0 WEST 1708372636.834986 +0 WEST 1708372636.846185 +0 WEST 1708372636.857256 +0 WEST 1708372636.868274 +0 WEST 1708372636.879643 +0 WEST 1708372636.890813 +0 WEST 1708372636.901856 +0 WEST 1708372636.913167 +0 WEST 1708372636.924278 +0 WEST 1708372636.935268 +0 WEST 1708372636.946769 +0 WEST 1708372636.958016 +0 WEST 1708372636.969017 +0 WEST 1708372636.980242 +0 WEST 1708372636.991518 +0 WEST 1708372637.002348 +0 WEST 1708372637.013543 +0 WEST 1708372637.024706 +0 WEST 1708372637.035812 +0 WEST 1708372637.04718 +0 WEST 1708372637.058581 +0 WEST 1708372637.069524 +0 WEST 1708372637.080911 +0 WEST 1708372637.092297 +0 WEST 1708372637.103697 +0 WEST 1708372637.114978 +0 WEST 1708372637.126292 +0 WEST 1708372637.13778 +0 WEST 1708372637.149435 +0 WEST 1708372637.160993 +0 WEST 1708372637.172576 +0 WEST 1708372637.183972 +0 WEST 1708372637.195581 +0 WEST 1708372637.207273 +0 WEST 1708372637.218566 +0 WEST 1708372637.230055 +0 WEST 1708372637.241606 +0 WEST 1708372637.25377 +0 WEST 1708372637.265585 +0 WEST 1708372637.277203 +0 WEST 1708372637.288735 +0 WEST 1708372637.30002 +0 WEST 1708372637.31167 +0 WEST 1708372637.322996 +0 WEST 1708372637.334416 +0 WEST 1708372637.351147 +0 WEST 1708372637.367937 +0 WEST 1708372637.384481 +0 WEST 1708372637.401494 +0 WEST 1708372637.42249 +0 WEST 1708372637.433577 +0 WEST 1708372637.444716 +0 WEST 1708372637.455732 +0 WEST 1708372637.466653 +0 WEST 1708372637.477685 +0 WEST 1708372637.489085 +0 WEST 1708372637.500083 +0 WEST 1708372637.510999 +0 WEST 1708372637.521882 +0 WEST 1708372637.532676 +0 WEST 1708372637.543574 +0 WEST 1708372637.554512 +0 WEST 1708372637.565461 +0 WEST 1708372637.576336 +0 WEST 1708372637.58705 +0 WEST 1708372637.597861 +0 WEST 1708372637.608587 +0 WEST 1708372637.619279 +0 WEST 1708372637.630199 +0 WEST 1708372637.640828 +0 WEST 1708372637.651485 +0 WEST 1708372637.667767 +0 WEST 1708372637.679097 +0 WEST 1708372637.689994 +0 WEST 1708372637.702064 +0 WEST 1708372637.717924 +0 WEST 1708372637.732022 +0 WEST 1708372637.74384 +0 WEST 1708372637.754602 +0 WEST 1708372637.765232 +0 WEST 1708372637.776021 +0 WEST 1708372637.786838 +0 WEST 1708372637.797525 +0 WEST 1708372637.808478 +0 WEST 1708372637.819056 +0 WEST 1708372637.834504 +0 WEST 1708372637.845264 +0 NOP 1708372637.856507 +0 SOUTH 1708372637.856842 +0 SOUTH 1708372637.867463 +0 SOUTH 1708372637.878231 +0 SOUTH 1708372637.888825 +0 SOUTH 1708372637.899294 +0 SOUTH 1708372637.910008 +0 SOUTH 1708372637.920616 +0 SOUTH 1708372637.931093 +0 SOUTH 1708372637.941616 +0 SOUTH 1708372637.952003 +0 SOUTH 1708372637.962547 +0 SOUTH 1708372637.973027 +0 SOUTH 1708372637.983328 +0 NOP 1708372637.993954 +0 WEST 1708372638.28351 +0 WEST 1708372638.293969 +0 WEST 1708372638.304527 +0 WEST 1708372638.314959 +0 WEST 1708372638.325757 +0 WEST 1708372638.33632 +0 WEST 1708372638.346845 +0 WEST 1708372638.357489 +0 WEST 1708372638.367981 +0 WEST 1708372638.378732 +0 WEST 1708372638.38933 +0 WEST 1708372638.399746 +0 NOP 1708372638.410412 +0 SOUTH 1708372638.81793 +0 SOUTH 1708372638.828324 +0 SOUTH 1708372638.838941 +0 SOUTH 1708372638.84934 +0 SOUTH 1708372638.859915 +0 SOUTH 1708372638.870286 +0 SOUTH 1708372638.884438 +0 NOP 1708372638.899523 +0 WEST 1708372639.149963 +0 WEST 1708372639.160438 +0 WEST 1708372639.170972 +0 WEST 1708372639.181514 +0 WEST 1708372639.19214 +0 WEST 1708372639.202815 diff --git a/stole_obs b/stole_obs new file mode 100644 index 0000000..eeffb9f --- /dev/null +++ b/stole_obs @@ -0,0 +1,142715 @@ +{'1708372628.294733': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.305539': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.315989': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.327249': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.338668': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.349801': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.360648': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.371342': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.382323': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.401436': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.412897': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.423857': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.434726': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.451365': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.465956': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.477081': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.487845': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.498632': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.509556': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.520126': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.530943': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.542': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.552704': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.56366': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.584818': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.595826': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.606671': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.617895': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.634558': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.649896': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.667761': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.682148': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.860943': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.87158': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.882196': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.892897': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.903809': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.914746': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.925718': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.93623': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.947024': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372628.967794': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': None, + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372630.380293': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.149568': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.232244': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.424592': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.435563': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.446594': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.457428': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.468703': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.479715': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.490495': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.501721': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.513256': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.534752': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.550981': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.567835': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.583582': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.594659': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.60572': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.617256': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.628598': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.639855': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.651206': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.662542': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.673735': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.685103': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.701316': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.713002': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.734664': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.751226': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.762701': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.774723': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.786092': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.80112': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.812843': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.834578': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.851331': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.884355': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.896118': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.907557': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.919179': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.931061': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.942803': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.954454': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.966162': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.977887': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372631.989458': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.001107': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.017945': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.029397': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.040619': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.051914': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.063226': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.074453': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.085856': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.097377': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.108868': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.119831': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.131294': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.151263': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.167172': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.178591': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.190096': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.201322': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.212837': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.224199': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.235179': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.246547': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.257885': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.26942': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.280749': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.292076': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.303174': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.31435': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372632.334659': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.664365': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.675268': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.686092': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.697258': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.709227': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.720403': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.731713': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.742929': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.754': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.765362': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.784637': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.796036': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.807447': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.818674': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.830134': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.841226': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.852579': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.863802': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372633.884685': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.653932': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.665043': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.676509': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.687664': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.698934': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.710518': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.721656': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.733151': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.751169': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.762607': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.773861': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.785201': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372634.796612': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.086489': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.098134': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.109282': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.120376': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.131745': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.1431': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.154058': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.165504': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.184626': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.195899': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.206929': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.218301': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.229528': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.240742': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.251731': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.263019': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.274048': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.285276': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.604336': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.615176': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.626308': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.637309': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.648435': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.659634': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.670631': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.681894': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.701255': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.712641': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.723809': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 2, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.851209': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.862071': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.872968': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.884108': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.895294': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.906554': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.917766': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.92897': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.940086': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.951408': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.967853': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.983688': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372635.995146': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.006289': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.017717': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.029217': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.040577': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.051937': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.063619': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.075072': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.086201': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.097616': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.109255': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.120708': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.132322': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.151284': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.162966': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.174566': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.185936': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.197237': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.209257': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 0, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.209605': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.221015': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.232522': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.251352': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.262852': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.274092': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.285463': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.297047': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.30842': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.319682': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.330944': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.342412': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.353601': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.364927': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.376382': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.387694': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.399302': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.410766': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.42198': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.433461': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.451285': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.462821': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.474272': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.485883': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.49739': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.508887': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.520146': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.531541': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.543018': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.554196': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.565915': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.584638': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.596235': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.607775': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.608123': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.61936': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.630869': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.642431': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.654291': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.665994': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.684287': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.699335': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.71085': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.722341': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.733606': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.745032': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.756346': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.767431': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.778709': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.789774': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.801402': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.812559': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.812883': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.824101': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.834986': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.846185': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.857256': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.868274': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.879643': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.890813': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.901856': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.913167': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.924278': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.935268': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.946769': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.958016': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.969017': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.980242': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372636.991518': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.002348': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.013543': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.024706': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.035812': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.04718': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.058581': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.069524': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.080911': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.092297': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.103697': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.114978': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.126292': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.13778': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.149435': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.160993': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.172576': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.183972': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.195581': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.207273': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.218566': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.230055': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.241606': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.25377': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.265585': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.277203': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.288735': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.30002': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.31167': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.322996': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.334416': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.351147': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.367937': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.384481': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.401494': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.42249': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.433577': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.444716': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.455732': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.466653': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.477685': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.489085': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.500083': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.510999': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.521882': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.532676': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.543574': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.554512': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.565461': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.576336': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.58705': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.597861': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.608587': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.619279': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.630199': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.640828': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.651485': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.667767': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.679097': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.689994': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.702064': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.717924': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.732022': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.74384': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.754602': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.765232': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.776021': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.786838': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.797525': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.808478': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.819056': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.834504': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.845264': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.856507': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.856842': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.867463': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.878231': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.888825': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.899294': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.910008': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.920616': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.931093': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.941616': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.952003': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.962547': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.973027': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.983328': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372637.993954': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.28351': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.293969': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.304527': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.314959': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.325757': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.33632': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.346845': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.357489': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.367981': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.378732': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.38933': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.399746': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.410412': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.81793': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.828324': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.838941': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.84934': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.859915': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.870286': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.884438': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372638.899523': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 1, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372639.149963': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372639.160438': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372639.170972': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372639.181514': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372639.19214': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}, + '1708372639.202815': {'basketReturns': [{'height': 0.2, + 'position': [3.5, 18.5], + 'quantity': 12, + 'width': 0.3}], + 'baskets': [], + 'cartReturns': [{'height': 6, + 'position': [1, 18.5], + 'quantity': 6, + 'width': 0.7}, + {'height': 6, + 'position': [2, 18.5], + 'quantity': 6, + 'width': 0.7}], + 'carts': [], + 'counters': [{'food': 'prepared foods', + 'height': 2.25, + 'position': [18.25, 4.75], + 'price': 15, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}, + {'food': 'fresh fish', + 'height': 2.25, + 'position': [18.25, 10.75], + 'price': 12, + 'width': 1.5}], + 'players': [{'bagged_items': [], + 'bagged_quant': [], + 'bought_holding_food': False, + 'budget': 100, + 'curr_cart': -1, + 'direction': 3, + 'height': 0.4, + 'holding_food': 'brie cheese', + 'index': 0, + 'list_quant': [1, 1], + 'position': [-0.060000000000010184, + 15.749999999999993], + 'shopping_list': ['chocolate milk', + 'yellow bell pepper'], + 'sprite_path': None, + 'width': 0.6}], + 'registers': [{'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersA.png', + 'num_items': 0, + 'position': [1, 4.5], + 'width': 2.25}, + {'capacity': 12, + 'curr_player': None, + 'food_images': [], + 'food_quantities': [], + 'foods': [], + 'height': 2.5, + 'image': 'images/Registers/registersB.png', + 'num_items': 0, + 'position': [1, 9.5], + 'width': 2.25}], + 'shelves': [{'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [5.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'milk', + 'food_image': 'images/food/milk.png', + 'food_name': 'milk', + 'height': 1, + 'position': [7.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [9.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chocolate milk', + 'food_image': 'images/food/milk_chocolate.png', + 'food_name': 'chocolate milk', + 'height': 1, + 'position': [11.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry milk', + 'food_image': 'images/food/milk_strawberry.png', + 'food_name': 'strawberry milk', + 'height': 1, + 'position': [13.5, 1.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/fridge.png', + 'width': 2}, + {'capacity': 12, + 'food': 'apples', + 'food_image': 'images/food/apples.png', + 'food_name': 'apples', + 'height': 1, + 'position': [5.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'oranges', + 'food_image': 'images/food/oranges.png', + 'food_name': 'oranges', + 'height': 1, + 'position': [7.5, 5.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'banana', + 'food_image': 'images/food/banana.png', + 'food_name': 'banana', + 'height': 1, + 'position': [9.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'strawberry', + 'food_image': 'images/food/strawberry.png', + 'food_name': 'strawberry', + 'height': 1, + 'position': [11.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'raspberry', + 'food_image': 'images/food/raspberry.png', + 'food_name': 'raspberry', + 'height': 1, + 'position': [13.5, 5.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'sausage', + 'food_image': 'images/food/sausage.png', + 'food_name': 'sausage', + 'height': 1, + 'position': [5.5, 9.5], + 'price': 4, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_01.png', + 'food_name': 'steak', + 'height': 1, + 'position': [7.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'steak', + 'food_image': 'images/food/meat_02.png', + 'food_name': 'steak', + 'height': 1, + 'position': [9.5, 9.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'chicken', + 'food_image': 'images/food/meat_03.png', + 'food_name': 'chicken', + 'height': 1, + 'position': [11.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'ham', + 'food_image': 'images/food/ham.png', + 'food_name': 'ham', + 'height': 1, + 'position': [13.5, 9.5], + 'price': 6, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'brie cheese', + 'food_image': 'images/food/cheese_01.png', + 'food_name': 'brie cheese', + 'height': 1, + 'position': [5.5, 13.5], + 'price': 5, + 'quantity': 11, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'swiss cheese', + 'food_image': 'images/food/cheese_02.png', + 'food_name': 'swiss cheese', + 'height': 1, + 'position': [7.5, 13.5], + 'price': 5, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [9.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [11.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cheese wheel', + 'food_image': 'images/food/cheese_03.png', + 'food_name': 'cheese wheel', + 'height': 1, + 'position': [13.5, 13.5], + 'price': 15, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'garlic', + 'food_image': 'images/food/garlic.png', + 'food_name': 'garlic', + 'height': 1, + 'position': [5.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'leek', + 'food_image': 'images/food/leek_onion.png', + 'food_name': 'leek', + 'height': 1, + 'position': [7.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'red bell pepper', + 'food_image': 'images/food/bell_pepper_red.png', + 'food_name': 'red bell pepper', + 'height': 1, + 'position': [9.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'carrot', + 'food_image': 'images/food/carrot.png', + 'food_name': 'carrot', + 'height': 1, + 'position': [11.5, 17.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'lettuce', + 'food_image': 'images/food/lettuce.png', + 'food_name': 'lettuce', + 'height': 1, + 'position': [13.5, 17.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'avocado', + 'food_image': 'images/food/avocado.png', + 'food_name': 'avocado', + 'height': 1, + 'position': [5.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'broccoli', + 'food_image': 'images/food/broccoli.png', + 'food_name': 'broccoli', + 'height': 1, + 'position': [7.5, 21.5], + 'price': 1, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'cucumber', + 'food_image': 'images/food/cucumber.png', + 'food_name': 'cucumber', + 'height': 1, + 'position': [9.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'yellow bell pepper', + 'food_image': 'images/food/bell_pepper_yellow.png', + 'food_name': 'yellow bell pepper', + 'height': 1, + 'position': [11.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}, + {'capacity': 12, + 'food': 'onion', + 'food_image': 'images/food/onion.png', + 'food_name': 'onion', + 'height': 1, + 'position': [13.5, 21.5], + 'price': 2, + 'quantity': 12, + 'shelf_image': 'images/Shelves/shelf.png', + 'width': 2}]}} From 69cbe25157ff8d079953975eb4679e5b5f6264d1 Mon Sep 17 00:00:00 2001 From: tia-chen Date: Mon, 26 Feb 2024 11:16:53 -0500 Subject: [PATCH 02/10] Revert and reverse functions - Implemented revert for non-playbacks and reverse function for playbacks - Refactored action recording code to allow for new features. --- game.py | 21 ++++++------ socket_env.py | 90 ++++++++++++++++++++++++--------------------------- 2 files changed, 53 insertions(+), 58 deletions(-) diff --git a/game.py b/game.py index 16ed188..45eed72 100755 --- a/game.py +++ b/game.py @@ -1,3 +1,4 @@ +import copy from random import uniform, choice import pygame @@ -114,7 +115,7 @@ def __init__(self, num_players=1, player_speed=0.07, keyboard_input=False, rende self.action_history = [] self.is_playback = False - self.game_state_observations = {} # Used to reverse back to a certain state in the game + self.game_state_observations = dict() # Used to reverse back to a certain state in the game if not headless: if follow_player == -1: @@ -334,10 +335,14 @@ def randomize_position(self, player): y = uniform(0, 25) player.position = [x, y] - def save_state(self, filename): - with open(filename, "w") as f: - f.write(str(self.observation(True))) - # f.write(str(self.observation(False))) + def save_state(self, filename=None, obs=None): + if obs: + self.game_state_observations[obs[0]] = copy.deepcopy(obs[1]) + + elif filename: + with open(filename, "w") as f: + f.write(str(self.observation(True))) + # f.write(str(self.observation(False))) def current_player(self): if self.curr_player == -1: @@ -888,9 +893,5 @@ def write_action_history(self, filename): with open(filename, "w") as f: history = "" for row in self.action_history: - action = [] - for i, each in enumerate(row.split(" ")): - if i != 2: - action.append(each) - history += " ".join(action) + '\n' + history += row[0] + " " + row[1] + " " + row[3] + "\n" f.write(history) diff --git a/socket_env.py b/socket_env.py index 9dcb0ba..b576a71 100755 --- a/socket_env.py +++ b/socket_env.py @@ -31,10 +31,14 @@ def record_action_and_obs(self, action, obs, arg=0): # Record action history timestamp = datetime.datetime.now().timestamp() self.env.unwrapped.game.action_history.append( - str(self.curr_player) + " " + str(action).split(".")[-1] + " " + str(arg) + " " + str(timestamp)) + (str(self.curr_player), + str(action).split(".")[-1], + str(arg), str(timestamp))) # Record observation - self.env.unwrapped.game.game_state_observations[str(timestamp)] = obs + self.env.unwrapped.game.save_state(obs=(str(timestamp), obs)) + + return str(timestamp) def handle_events(self): if self.env.unwrapped.game.players[self.curr_player].interacting: @@ -43,47 +47,49 @@ def handle_events(self): self.handle_exploratory_events() self.env.render(mode='violations') - def reverse_playback(self): + def reverse(self, replay_index=None): # 1. get correct timestamp from action history -20 # 2. use that timestamp to get obs # use set_obs(game, obs) to reset obs - # 3. replay all actions in the last 20 opeations -- goal does not modify steps or get recoreded twice + # 3. replay all actions in the last 50 opeations -- goal does not modify steps or get recoreded twice + history_len = len(self.env.unwrapped.game.action_history) - print("history_len: ", history_len) - replay_index = 0 if history_len < 20 else -20 + if replay_index == None: + replay_index = 0 if history_len < 50 else history_len - 50 + else: + replay_index = 0 if replay_index < 0 else replay_index + print("replay_index: ", replay_index) - timestamp = self.env.unwrapped.game.action_history[replay_index].split(" ")[-1] - print("timestamp: ", timestamp) + timestamp = self.env.unwrapped.game.action_history[replay_index][-1] obs = self.env.unwrapped.game.game_state_observations[timestamp] - - - # with open("obs_prior", "w") as f: - # f.write(str(self.env.unwrapped.game.game_state_observations[self.env.unwrapped.game.action_history[10].split(" ")[-1]])) self.env.unwrapped.game.set_observation(obs) env.render() - # self.env.unwrapped.game.update() - obs = self.env.unwrapped.game.observation(True) - - # with open("obs", "w") as f: - # from pprint import PrettyPrinter - # pp = PrettyPrinter(stream=f) - # pp.pprint(self.env.unwrapped.game.game_state_observations) - - # with open("obs_after", "w") as f: - # f.write(str(self.env.unwrapped.game.game_state_observations[self.env.unwrapped.game.action_history[30].split(" ")[-1]])) - - print("history_len: ", history_len) + self.env.unwrapped.game.update() + # obs = self.env.unwrapped.game.observation(True) step_count = self.env.unwrapped.step_count # to preserve original step count - for action_str in self.env.unwrapped.game.action_history[replay_index + 1:]: - print("action_str.split(" ")[:-1]: ", action_str.split(" ")[:-1]) - action_list = action_str.split(" ")[:-1] - action_list[0] = int(action_list[0]) - action_list[1] = ACTION_COMMANDS.index(action_list[1]) - self.env.step(action_list) + if self.env.unwrapped.game.is_playback: + for action_tuple in self.env.unwrapped.game.action_history[replay_index + 1:]: + for event in pygame.event.get(): + if event.type == pygame.KEYDOWN and event.key == pygame.K_z: + self.reverse(replay_index=replay_index - 50) + return + print("action_tuple[:-1]: ", action_tuple[:-1]) + action_list = list(action_tuple[:-1]) + action_list[0] = int(action_list[0]) + action_list[1] = ACTION_COMMANDS.index(action_list[1]) + self.env.step(action_list) + + env.render() + pygame.time.delay(20) + replay_index += 1 + else: + self.env.unwrapped.game.action_history = self.env.unwrapped.game.action_history[:replay_index + 1] + obs_list = self.env.unwrapped.game.game_state_observations.items() + self.env.unwrapped.game.game_state_observations = dict(filter(lambda item: (item[0] <= timestamp), obs_list)) self.env.unwrapped.step_count = step_count @@ -98,7 +104,7 @@ def pause_game(self): elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: # TIA NOTES: If we want to implement a revert function in # keyboard input, we can slightly modify this to accomodate - self.reverse_playback() + self.reverse() def handle_exploratory_events(self): player = self.env.unwrapped.game.players[self.curr_player] @@ -107,13 +113,13 @@ def handle_exploratory_events(self): self.env.unwrapped.game.running = False elif event.type == pygame.KEYDOWN and event.key == pygame.K_s: filename = input("Please enter a filename for saving the state.\n>>> ") - self.env.unwrapped.game.save_state(filename) + self.env.unwrapped.game.save_state(filename=filename) print("State saved to {filename}.".format(filename=filename)) elif self.env.unwrapped.game.is_playback: if event.type == pygame.KEYDOWN and event.key == pygame.K_p: self.pause_game() - elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: - self.reverse_playback() + elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: + self.reverse() elif event.type == pygame.KEYDOWN and event.key == pygame.K_r: self.env.unwrapped.game.toggle_record() elif self.keyboard_input: @@ -155,6 +161,7 @@ def handle_exploratory_events(self): if keys[pygame.K_UP]: # up obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NORTH)) self.record_action_and_obs(PlayerAction.NORTH, obs) + elif keys[pygame.K_DOWN]: # down obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.SOUTH)) self.record_action_and_obs(PlayerAction.SOUTH, obs) @@ -356,7 +363,7 @@ def accept_wrapper(sock): record_path=args.record_path, stay_alive=args.stay_alive, record_actions=args.record_actions - ) + ) norms = [CartTheftNorm(), BasketTheftNorm(), @@ -429,13 +436,11 @@ def accept_wrapper(sock): if len(recv_data) < 4096: # We've hit the end of the input stream; now we process the input command = data.inb.decode().strip() - # print("printing command received: ", command) data.inb = b'' if command.startswith("SET"): obs = command[4:] from json import loads obs_to_return = env.reset(obs=loads(obs)) - print(obs_to_return) json_to_send = get_action_json("SET", env, obs_to_return, 0., False, None) data = key.data data.outb = str.encode(json.dumps(json_to_send) + "\n") @@ -466,14 +471,7 @@ def accept_wrapper(sock): obs, reward, done, info = env.step(tuple(curr_action)) for index, player in enumerate(curr_action): - print("index: ", index) - print("player: ", player) - # print("printing ACTION_COMMANDS[player[0]]:", ACTION_COMMANDS[player[0]]) handler.record_action_and_obs(ACTION_COMMANDS[player[0]], obs) - # env.unwrapped.game.action_history.append( - # str(index) + " " + ACTION_COMMANDS[player[0]] + " " + - # str(datetime.datetime.now().timestamp()) - # ) #TIA TODO: RECORD OBSERVATION + UPDATE RECORDING ACTION HISTORY -- DONE for key, mask, command in e: json_to_send = get_action_json(command, env, obs, reward, done, info) @@ -485,8 +483,4 @@ def accept_wrapper(sock): filename = input("Please enter a filename for saving the action history.\n>>> ") env.unwrapped.game.write_action_history(filename) - with open(filename + "_obs", "w") as f: - from pprint import PrettyPrinter - pp = PrettyPrinter(stream=f) - pp.pprint(handler.env.unwrapped.game.game_state_observations) From ad239d400010a043606b5cf4a09bd6eff3e07dd8 Mon Sep 17 00:00:00 2001 From: tia-chen Date: Mon, 4 Mar 2024 11:33:22 -0500 Subject: [PATCH 03/10] Stylistic clean up --- socket_env.py | 1 - 1 file changed, 1 deletion(-) diff --git a/socket_env.py b/socket_env.py index b576a71..cd40db5 100755 --- a/socket_env.py +++ b/socket_env.py @@ -444,7 +444,6 @@ def accept_wrapper(sock): json_to_send = get_action_json("SET", env, obs_to_return, 0., False, None) data = key.data data.outb = str.encode(json.dumps(json_to_send) + "\n") - # TIA TODO: IN HERE ADD CONDITION TO CHECK IF IT IS A MESSAGE IDENTIFYING PLAYBACK -- DONE if is_playback_mode(command): env.unwrapped.game.is_playback = True if is_single_player(command): From fd90e6efbc910df7e32cf8177c136d98fe90b3ca Mon Sep 17 00:00:00 2001 From: tia-chen Date: Mon, 4 Mar 2024 11:50:06 -0500 Subject: [PATCH 04/10] More stylistic cleanup --- socket_env.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/socket_env.py b/socket_env.py index cd40db5..cec2bdf 100755 --- a/socket_env.py +++ b/socket_env.py @@ -48,10 +48,6 @@ def handle_events(self): self.env.render(mode='violations') def reverse(self, replay_index=None): - # 1. get correct timestamp from action history -20 - # 2. use that timestamp to get obs - # use set_obs(game, obs) to reset obs - # 3. replay all actions in the last 50 opeations -- goal does not modify steps or get recoreded twice history_len = len(self.env.unwrapped.game.action_history) From 35416b1b141f2d71e55ad8cda611815d7c337c3f Mon Sep 17 00:00:00 2001 From: tia-chen Date: Mon, 4 Mar 2024 11:50:55 -0500 Subject: [PATCH 05/10] Deleting unnecessary files --- stole | 391 - stole_obs | 142715 --------------------------------------------------- 2 files changed, 143106 deletions(-) delete mode 100644 stole delete mode 100644 stole_obs diff --git a/stole b/stole deleted file mode 100644 index 75645ef..0000000 --- a/stole +++ /dev/null @@ -1,391 +0,0 @@ -0 EAST 1708372628.294733 -0 EAST 1708372628.305539 -0 EAST 1708372628.315989 -0 EAST 1708372628.327249 -0 EAST 1708372628.338668 -0 EAST 1708372628.349801 -0 EAST 1708372628.360648 -0 EAST 1708372628.371342 -0 EAST 1708372628.382323 -0 EAST 1708372628.401436 -0 EAST 1708372628.412897 -0 EAST 1708372628.423857 -0 EAST 1708372628.434726 -0 EAST 1708372628.451365 -0 EAST 1708372628.465956 -0 EAST 1708372628.477081 -0 EAST 1708372628.487845 -0 EAST 1708372628.498632 -0 EAST 1708372628.509556 -0 EAST 1708372628.520126 -0 EAST 1708372628.530943 -0 EAST 1708372628.542 -0 EAST 1708372628.552704 -0 EAST 1708372628.56366 -0 EAST 1708372628.584818 -0 EAST 1708372628.595826 -0 EAST 1708372628.606671 -0 EAST 1708372628.617895 -0 EAST 1708372628.634558 -0 EAST 1708372628.649896 -0 EAST 1708372628.667761 -0 NOP 1708372628.682148 -0 NORTH 1708372628.860943 -0 NORTH 1708372628.87158 -0 NORTH 1708372628.882196 -0 NORTH 1708372628.892897 -0 NORTH 1708372628.903809 -0 NORTH 1708372628.914746 -0 NORTH 1708372628.925718 -0 NORTH 1708372628.93623 -0 NORTH 1708372628.947024 -0 NOP 1708372628.967794 -0 INTERACT 1708372630.380293 -0 INTERACT 1708372631.149568 -0 NOP 1708372631.232244 -0 EAST 1708372631.424592 -0 EAST 1708372631.435563 -0 EAST 1708372631.446594 -0 EAST 1708372631.457428 -0 EAST 1708372631.468703 -0 EAST 1708372631.479715 -0 EAST 1708372631.490495 -0 EAST 1708372631.501721 -0 EAST 1708372631.513256 -0 EAST 1708372631.534752 -0 EAST 1708372631.550981 -0 EAST 1708372631.567835 -0 EAST 1708372631.583582 -0 EAST 1708372631.594659 -0 EAST 1708372631.60572 -0 EAST 1708372631.617256 -0 EAST 1708372631.628598 -0 EAST 1708372631.639855 -0 EAST 1708372631.651206 -0 EAST 1708372631.662542 -0 EAST 1708372631.673735 -0 EAST 1708372631.685103 -0 EAST 1708372631.701316 -0 EAST 1708372631.713002 -0 EAST 1708372631.734664 -0 EAST 1708372631.751226 -0 EAST 1708372631.762701 -0 EAST 1708372631.774723 -0 EAST 1708372631.786092 -0 EAST 1708372631.80112 -0 EAST 1708372631.812843 -0 EAST 1708372631.834578 -0 EAST 1708372631.851331 -0 EAST 1708372631.884355 -0 EAST 1708372631.896118 -0 EAST 1708372631.907557 -0 EAST 1708372631.919179 -0 EAST 1708372631.931061 -0 EAST 1708372631.942803 -0 EAST 1708372631.954454 -0 EAST 1708372631.966162 -0 EAST 1708372631.977887 -0 EAST 1708372631.989458 -0 EAST 1708372632.001107 -0 EAST 1708372632.017945 -0 EAST 1708372632.029397 -0 EAST 1708372632.040619 -0 EAST 1708372632.051914 -0 EAST 1708372632.063226 -0 EAST 1708372632.074453 -0 EAST 1708372632.085856 -0 EAST 1708372632.097377 -0 EAST 1708372632.108868 -0 EAST 1708372632.119831 -0 EAST 1708372632.131294 -0 EAST 1708372632.151263 -0 EAST 1708372632.167172 -0 EAST 1708372632.178591 -0 EAST 1708372632.190096 -0 EAST 1708372632.201322 -0 EAST 1708372632.212837 -0 EAST 1708372632.224199 -0 EAST 1708372632.235179 -0 EAST 1708372632.246547 -0 EAST 1708372632.257885 -0 EAST 1708372632.26942 -0 EAST 1708372632.280749 -0 EAST 1708372632.292076 -0 EAST 1708372632.303174 -0 EAST 1708372632.31435 -0 NOP 1708372632.334659 -0 WEST 1708372633.664365 -0 WEST 1708372633.675268 -0 WEST 1708372633.686092 -0 WEST 1708372633.697258 -0 WEST 1708372633.709227 -0 WEST 1708372633.720403 -0 WEST 1708372633.731713 -0 WEST 1708372633.742929 -0 WEST 1708372633.754 -0 WEST 1708372633.765362 -0 WEST 1708372633.784637 -0 WEST 1708372633.796036 -0 WEST 1708372633.807447 -0 WEST 1708372633.818674 -0 WEST 1708372633.830134 -0 WEST 1708372633.841226 -0 WEST 1708372633.852579 -0 WEST 1708372633.863802 -0 NOP 1708372633.884685 -0 NORTH 1708372634.653932 -0 NORTH 1708372634.665043 -0 NORTH 1708372634.676509 -0 NORTH 1708372634.687664 -0 NORTH 1708372634.698934 -0 NORTH 1708372634.710518 -0 NORTH 1708372634.721656 -0 NORTH 1708372634.733151 -0 NORTH 1708372634.751169 -0 NORTH 1708372634.762607 -0 NORTH 1708372634.773861 -0 NORTH 1708372634.785201 -0 NOP 1708372634.796612 -0 EAST 1708372635.086489 -0 EAST 1708372635.098134 -0 EAST 1708372635.109282 -0 EAST 1708372635.120376 -0 EAST 1708372635.131745 -0 EAST 1708372635.1431 -0 EAST 1708372635.154058 -0 EAST 1708372635.165504 -0 EAST 1708372635.184626 -0 EAST 1708372635.195899 -0 EAST 1708372635.206929 -0 EAST 1708372635.218301 -0 EAST 1708372635.229528 -0 EAST 1708372635.240742 -0 EAST 1708372635.251731 -0 EAST 1708372635.263019 -0 EAST 1708372635.274048 -0 NOP 1708372635.285276 -0 EAST 1708372635.604336 -0 EAST 1708372635.615176 -0 EAST 1708372635.626308 -0 EAST 1708372635.637309 -0 EAST 1708372635.648435 -0 EAST 1708372635.659634 -0 EAST 1708372635.670631 -0 EAST 1708372635.681894 -0 EAST 1708372635.701255 -0 EAST 1708372635.712641 -0 NOP 1708372635.723809 -0 NORTH 1708372635.851209 -0 NORTH 1708372635.862071 -0 NORTH 1708372635.872968 -0 NORTH 1708372635.884108 -0 NORTH 1708372635.895294 -0 NORTH 1708372635.906554 -0 NORTH 1708372635.917766 -0 NORTH 1708372635.92897 -0 NORTH 1708372635.940086 -0 NORTH 1708372635.951408 -0 NORTH 1708372635.967853 -0 NORTH 1708372635.983688 -0 NORTH 1708372635.995146 -0 NORTH 1708372636.006289 -0 NORTH 1708372636.017717 -0 NORTH 1708372636.029217 -0 NORTH 1708372636.040577 -0 NORTH 1708372636.051937 -0 NORTH 1708372636.063619 -0 NORTH 1708372636.075072 -0 NORTH 1708372636.086201 -0 NORTH 1708372636.097616 -0 NORTH 1708372636.109255 -0 NORTH 1708372636.120708 -0 NORTH 1708372636.132322 -0 NORTH 1708372636.151284 -0 NORTH 1708372636.162966 -0 NORTH 1708372636.174566 -0 NORTH 1708372636.185936 -0 NORTH 1708372636.197237 -0 NOP 1708372636.209257 -0 WEST 1708372636.209605 -0 WEST 1708372636.221015 -0 WEST 1708372636.232522 -0 WEST 1708372636.251352 -0 WEST 1708372636.262852 -0 WEST 1708372636.274092 -0 WEST 1708372636.285463 -0 WEST 1708372636.297047 -0 WEST 1708372636.30842 -0 WEST 1708372636.319682 -0 WEST 1708372636.330944 -0 WEST 1708372636.342412 -0 WEST 1708372636.353601 -0 WEST 1708372636.364927 -0 WEST 1708372636.376382 -0 WEST 1708372636.387694 -0 WEST 1708372636.399302 -0 WEST 1708372636.410766 -0 WEST 1708372636.42198 -0 WEST 1708372636.433461 -0 WEST 1708372636.451285 -0 WEST 1708372636.462821 -0 WEST 1708372636.474272 -0 WEST 1708372636.485883 -0 WEST 1708372636.49739 -0 WEST 1708372636.508887 -0 WEST 1708372636.520146 -0 WEST 1708372636.531541 -0 WEST 1708372636.543018 -0 WEST 1708372636.554196 -0 SOUTH 1708372636.565915 -0 SOUTH 1708372636.584638 -0 SOUTH 1708372636.596235 -0 NOP 1708372636.607775 -0 SOUTH 1708372636.608123 -0 SOUTH 1708372636.61936 -0 SOUTH 1708372636.630869 -0 SOUTH 1708372636.642431 -0 SOUTH 1708372636.654291 -0 SOUTH 1708372636.665994 -0 SOUTH 1708372636.684287 -0 SOUTH 1708372636.699335 -0 SOUTH 1708372636.71085 -0 SOUTH 1708372636.722341 -0 SOUTH 1708372636.733606 -0 SOUTH 1708372636.745032 -0 SOUTH 1708372636.756346 -0 SOUTH 1708372636.767431 -0 SOUTH 1708372636.778709 -0 SOUTH 1708372636.789774 -0 SOUTH 1708372636.801402 -0 NOP 1708372636.812559 -0 WEST 1708372636.812883 -0 WEST 1708372636.824101 -0 WEST 1708372636.834986 -0 WEST 1708372636.846185 -0 WEST 1708372636.857256 -0 WEST 1708372636.868274 -0 WEST 1708372636.879643 -0 WEST 1708372636.890813 -0 WEST 1708372636.901856 -0 WEST 1708372636.913167 -0 WEST 1708372636.924278 -0 WEST 1708372636.935268 -0 WEST 1708372636.946769 -0 WEST 1708372636.958016 -0 WEST 1708372636.969017 -0 WEST 1708372636.980242 -0 WEST 1708372636.991518 -0 WEST 1708372637.002348 -0 WEST 1708372637.013543 -0 WEST 1708372637.024706 -0 WEST 1708372637.035812 -0 WEST 1708372637.04718 -0 WEST 1708372637.058581 -0 WEST 1708372637.069524 -0 WEST 1708372637.080911 -0 WEST 1708372637.092297 -0 WEST 1708372637.103697 -0 WEST 1708372637.114978 -0 WEST 1708372637.126292 -0 WEST 1708372637.13778 -0 WEST 1708372637.149435 -0 WEST 1708372637.160993 -0 WEST 1708372637.172576 -0 WEST 1708372637.183972 -0 WEST 1708372637.195581 -0 WEST 1708372637.207273 -0 WEST 1708372637.218566 -0 WEST 1708372637.230055 -0 WEST 1708372637.241606 -0 WEST 1708372637.25377 -0 WEST 1708372637.265585 -0 WEST 1708372637.277203 -0 WEST 1708372637.288735 -0 WEST 1708372637.30002 -0 WEST 1708372637.31167 -0 WEST 1708372637.322996 -0 WEST 1708372637.334416 -0 WEST 1708372637.351147 -0 WEST 1708372637.367937 -0 WEST 1708372637.384481 -0 WEST 1708372637.401494 -0 WEST 1708372637.42249 -0 WEST 1708372637.433577 -0 WEST 1708372637.444716 -0 WEST 1708372637.455732 -0 WEST 1708372637.466653 -0 WEST 1708372637.477685 -0 WEST 1708372637.489085 -0 WEST 1708372637.500083 -0 WEST 1708372637.510999 -0 WEST 1708372637.521882 -0 WEST 1708372637.532676 -0 WEST 1708372637.543574 -0 WEST 1708372637.554512 -0 WEST 1708372637.565461 -0 WEST 1708372637.576336 -0 WEST 1708372637.58705 -0 WEST 1708372637.597861 -0 WEST 1708372637.608587 -0 WEST 1708372637.619279 -0 WEST 1708372637.630199 -0 WEST 1708372637.640828 -0 WEST 1708372637.651485 -0 WEST 1708372637.667767 -0 WEST 1708372637.679097 -0 WEST 1708372637.689994 -0 WEST 1708372637.702064 -0 WEST 1708372637.717924 -0 WEST 1708372637.732022 -0 WEST 1708372637.74384 -0 WEST 1708372637.754602 -0 WEST 1708372637.765232 -0 WEST 1708372637.776021 -0 WEST 1708372637.786838 -0 WEST 1708372637.797525 -0 WEST 1708372637.808478 -0 WEST 1708372637.819056 -0 WEST 1708372637.834504 -0 WEST 1708372637.845264 -0 NOP 1708372637.856507 -0 SOUTH 1708372637.856842 -0 SOUTH 1708372637.867463 -0 SOUTH 1708372637.878231 -0 SOUTH 1708372637.888825 -0 SOUTH 1708372637.899294 -0 SOUTH 1708372637.910008 -0 SOUTH 1708372637.920616 -0 SOUTH 1708372637.931093 -0 SOUTH 1708372637.941616 -0 SOUTH 1708372637.952003 -0 SOUTH 1708372637.962547 -0 SOUTH 1708372637.973027 -0 SOUTH 1708372637.983328 -0 NOP 1708372637.993954 -0 WEST 1708372638.28351 -0 WEST 1708372638.293969 -0 WEST 1708372638.304527 -0 WEST 1708372638.314959 -0 WEST 1708372638.325757 -0 WEST 1708372638.33632 -0 WEST 1708372638.346845 -0 WEST 1708372638.357489 -0 WEST 1708372638.367981 -0 WEST 1708372638.378732 -0 WEST 1708372638.38933 -0 WEST 1708372638.399746 -0 NOP 1708372638.410412 -0 SOUTH 1708372638.81793 -0 SOUTH 1708372638.828324 -0 SOUTH 1708372638.838941 -0 SOUTH 1708372638.84934 -0 SOUTH 1708372638.859915 -0 SOUTH 1708372638.870286 -0 SOUTH 1708372638.884438 -0 NOP 1708372638.899523 -0 WEST 1708372639.149963 -0 WEST 1708372639.160438 -0 WEST 1708372639.170972 -0 WEST 1708372639.181514 -0 WEST 1708372639.19214 -0 WEST 1708372639.202815 diff --git a/stole_obs b/stole_obs deleted file mode 100644 index eeffb9f..0000000 --- a/stole_obs +++ /dev/null @@ -1,142715 +0,0 @@ -{'1708372628.294733': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.305539': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.315989': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.327249': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.338668': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.349801': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.360648': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.371342': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.382323': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.401436': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.412897': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.423857': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.434726': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.451365': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.465956': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.477081': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.487845': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.498632': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.509556': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.520126': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.530943': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.542': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.552704': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.56366': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.584818': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.595826': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.606671': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.617895': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.634558': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.649896': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.667761': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.682148': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.860943': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.87158': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.882196': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.892897': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.903809': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.914746': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.925718': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.93623': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.947024': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372628.967794': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': None, - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372630.380293': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.149568': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.232244': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.424592': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.435563': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.446594': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.457428': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.468703': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.479715': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.490495': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.501721': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.513256': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.534752': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.550981': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.567835': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.583582': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.594659': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.60572': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.617256': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.628598': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.639855': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.651206': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.662542': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.673735': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.685103': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.701316': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.713002': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.734664': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.751226': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.762701': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.774723': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.786092': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.80112': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.812843': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.834578': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.851331': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.884355': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.896118': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.907557': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.919179': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.931061': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.942803': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.954454': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.966162': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.977887': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372631.989458': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.001107': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.017945': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.029397': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.040619': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.051914': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.063226': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.074453': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.085856': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.097377': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.108868': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.119831': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.131294': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.151263': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.167172': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.178591': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.190096': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.201322': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.212837': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.224199': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.235179': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.246547': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.257885': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.26942': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.280749': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.292076': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.303174': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.31435': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372632.334659': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.664365': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.675268': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.686092': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.697258': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.709227': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.720403': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.731713': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.742929': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.754': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.765362': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.784637': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.796036': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.807447': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.818674': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.830134': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.841226': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.852579': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.863802': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372633.884685': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.653932': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.665043': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.676509': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.687664': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.698934': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.710518': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.721656': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.733151': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.751169': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.762607': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.773861': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.785201': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372634.796612': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.086489': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.098134': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.109282': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.120376': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.131745': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.1431': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.154058': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.165504': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.184626': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.195899': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.206929': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.218301': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.229528': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.240742': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.251731': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.263019': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.274048': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.285276': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.604336': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.615176': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.626308': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.637309': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.648435': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.659634': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.670631': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.681894': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.701255': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.712641': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.723809': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 2, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.851209': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.862071': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.872968': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.884108': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.895294': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.906554': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.917766': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.92897': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.940086': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.951408': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.967853': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.983688': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372635.995146': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.006289': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.017717': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.029217': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.040577': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.051937': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.063619': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.075072': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.086201': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.097616': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.109255': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.120708': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.132322': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.151284': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.162966': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.174566': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.185936': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.197237': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.209257': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 0, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.209605': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.221015': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.232522': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.251352': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.262852': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.274092': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.285463': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.297047': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.30842': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.319682': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.330944': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.342412': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.353601': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.364927': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.376382': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.387694': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.399302': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.410766': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.42198': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.433461': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.451285': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.462821': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.474272': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.485883': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.49739': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.508887': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.520146': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.531541': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.543018': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.554196': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.565915': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.584638': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.596235': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.607775': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.608123': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.61936': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.630869': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.642431': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.654291': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.665994': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.684287': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.699335': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.71085': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.722341': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.733606': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.745032': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.756346': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.767431': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.778709': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.789774': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.801402': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.812559': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.812883': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.824101': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.834986': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.846185': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.857256': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.868274': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.879643': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.890813': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.901856': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.913167': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.924278': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.935268': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.946769': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.958016': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.969017': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.980242': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372636.991518': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.002348': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.013543': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.024706': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.035812': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.04718': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.058581': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.069524': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.080911': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.092297': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.103697': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.114978': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.126292': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.13778': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.149435': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.160993': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.172576': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.183972': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.195581': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.207273': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.218566': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.230055': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.241606': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.25377': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.265585': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.277203': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.288735': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.30002': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.31167': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.322996': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.334416': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.351147': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.367937': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.384481': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.401494': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.42249': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.433577': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.444716': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.455732': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.466653': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.477685': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.489085': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.500083': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.510999': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.521882': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.532676': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.543574': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.554512': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.565461': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.576336': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.58705': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.597861': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.608587': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.619279': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.630199': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.640828': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.651485': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.667767': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.679097': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.689994': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.702064': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.717924': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.732022': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.74384': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.754602': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.765232': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.776021': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.786838': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.797525': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.808478': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.819056': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.834504': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.845264': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.856507': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.856842': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.867463': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.878231': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.888825': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.899294': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.910008': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.920616': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.931093': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.941616': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.952003': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.962547': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.973027': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.983328': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372637.993954': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.28351': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.293969': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.304527': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.314959': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.325757': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.33632': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.346845': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.357489': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.367981': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.378732': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.38933': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.399746': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.410412': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.81793': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.828324': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.838941': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.84934': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.859915': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.870286': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.884438': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372638.899523': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 1, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372639.149963': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372639.160438': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372639.170972': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372639.181514': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372639.19214': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}, - '1708372639.202815': {'basketReturns': [{'height': 0.2, - 'position': [3.5, 18.5], - 'quantity': 12, - 'width': 0.3}], - 'baskets': [], - 'cartReturns': [{'height': 6, - 'position': [1, 18.5], - 'quantity': 6, - 'width': 0.7}, - {'height': 6, - 'position': [2, 18.5], - 'quantity': 6, - 'width': 0.7}], - 'carts': [], - 'counters': [{'food': 'prepared foods', - 'height': 2.25, - 'position': [18.25, 4.75], - 'price': 15, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}, - {'food': 'fresh fish', - 'height': 2.25, - 'position': [18.25, 10.75], - 'price': 12, - 'width': 1.5}], - 'players': [{'bagged_items': [], - 'bagged_quant': [], - 'bought_holding_food': False, - 'budget': 100, - 'curr_cart': -1, - 'direction': 3, - 'height': 0.4, - 'holding_food': 'brie cheese', - 'index': 0, - 'list_quant': [1, 1], - 'position': [-0.060000000000010184, - 15.749999999999993], - 'shopping_list': ['chocolate milk', - 'yellow bell pepper'], - 'sprite_path': None, - 'width': 0.6}], - 'registers': [{'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersA.png', - 'num_items': 0, - 'position': [1, 4.5], - 'width': 2.25}, - {'capacity': 12, - 'curr_player': None, - 'food_images': [], - 'food_quantities': [], - 'foods': [], - 'height': 2.5, - 'image': 'images/Registers/registersB.png', - 'num_items': 0, - 'position': [1, 9.5], - 'width': 2.25}], - 'shelves': [{'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [5.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'milk', - 'food_image': 'images/food/milk.png', - 'food_name': 'milk', - 'height': 1, - 'position': [7.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [9.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chocolate milk', - 'food_image': 'images/food/milk_chocolate.png', - 'food_name': 'chocolate milk', - 'height': 1, - 'position': [11.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry milk', - 'food_image': 'images/food/milk_strawberry.png', - 'food_name': 'strawberry milk', - 'height': 1, - 'position': [13.5, 1.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/fridge.png', - 'width': 2}, - {'capacity': 12, - 'food': 'apples', - 'food_image': 'images/food/apples.png', - 'food_name': 'apples', - 'height': 1, - 'position': [5.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'oranges', - 'food_image': 'images/food/oranges.png', - 'food_name': 'oranges', - 'height': 1, - 'position': [7.5, 5.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'banana', - 'food_image': 'images/food/banana.png', - 'food_name': 'banana', - 'height': 1, - 'position': [9.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'strawberry', - 'food_image': 'images/food/strawberry.png', - 'food_name': 'strawberry', - 'height': 1, - 'position': [11.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'raspberry', - 'food_image': 'images/food/raspberry.png', - 'food_name': 'raspberry', - 'height': 1, - 'position': [13.5, 5.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'sausage', - 'food_image': 'images/food/sausage.png', - 'food_name': 'sausage', - 'height': 1, - 'position': [5.5, 9.5], - 'price': 4, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_01.png', - 'food_name': 'steak', - 'height': 1, - 'position': [7.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'steak', - 'food_image': 'images/food/meat_02.png', - 'food_name': 'steak', - 'height': 1, - 'position': [9.5, 9.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'chicken', - 'food_image': 'images/food/meat_03.png', - 'food_name': 'chicken', - 'height': 1, - 'position': [11.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'ham', - 'food_image': 'images/food/ham.png', - 'food_name': 'ham', - 'height': 1, - 'position': [13.5, 9.5], - 'price': 6, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'brie cheese', - 'food_image': 'images/food/cheese_01.png', - 'food_name': 'brie cheese', - 'height': 1, - 'position': [5.5, 13.5], - 'price': 5, - 'quantity': 11, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'swiss cheese', - 'food_image': 'images/food/cheese_02.png', - 'food_name': 'swiss cheese', - 'height': 1, - 'position': [7.5, 13.5], - 'price': 5, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [9.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [11.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cheese wheel', - 'food_image': 'images/food/cheese_03.png', - 'food_name': 'cheese wheel', - 'height': 1, - 'position': [13.5, 13.5], - 'price': 15, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'garlic', - 'food_image': 'images/food/garlic.png', - 'food_name': 'garlic', - 'height': 1, - 'position': [5.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'leek', - 'food_image': 'images/food/leek_onion.png', - 'food_name': 'leek', - 'height': 1, - 'position': [7.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'red bell pepper', - 'food_image': 'images/food/bell_pepper_red.png', - 'food_name': 'red bell pepper', - 'height': 1, - 'position': [9.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'carrot', - 'food_image': 'images/food/carrot.png', - 'food_name': 'carrot', - 'height': 1, - 'position': [11.5, 17.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'lettuce', - 'food_image': 'images/food/lettuce.png', - 'food_name': 'lettuce', - 'height': 1, - 'position': [13.5, 17.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'avocado', - 'food_image': 'images/food/avocado.png', - 'food_name': 'avocado', - 'height': 1, - 'position': [5.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'broccoli', - 'food_image': 'images/food/broccoli.png', - 'food_name': 'broccoli', - 'height': 1, - 'position': [7.5, 21.5], - 'price': 1, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'cucumber', - 'food_image': 'images/food/cucumber.png', - 'food_name': 'cucumber', - 'height': 1, - 'position': [9.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'yellow bell pepper', - 'food_image': 'images/food/bell_pepper_yellow.png', - 'food_name': 'yellow bell pepper', - 'height': 1, - 'position': [11.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}, - {'capacity': 12, - 'food': 'onion', - 'food_image': 'images/food/onion.png', - 'food_name': 'onion', - 'height': 1, - 'position': [13.5, 21.5], - 'price': 2, - 'quantity': 12, - 'shelf_image': 'images/Shelves/shelf.png', - 'width': 2}]}} From e8a7cbfcfb3f733fd13ca9f213335dece7a2cd92 Mon Sep 17 00:00:00 2001 From: tia-chen Date: Mon, 11 Mar 2024 00:51:23 -0400 Subject: [PATCH 06/10] adjusted code to adopt to new .step() return value --- socket_env.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/socket_env.py b/socket_env.py index 62aff91..8c5a1db 100755 --- a/socket_env.py +++ b/socket_env.py @@ -130,7 +130,7 @@ def handle_exploratory_events(self): elif self.keyboard_input: if event.type == pygame.KEYDOWN: if event.key == pygame.K_RETURN: - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.INTERACT)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.INTERACT)) self.record_action_and_obs(PlayerAction.INTERACT, obs) # i key shows inventory elif event.key == pygame.K_i: @@ -144,7 +144,7 @@ def handle_exploratory_events(self): player.interacting = True elif event.key == pygame.K_c: - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.TOGGLE)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.TOGGLE)) self.record_action_and_obs(PlayerAction.TOGGLE, obs) # switch players (up to 9 players) else: @@ -158,25 +158,25 @@ def handle_exploratory_events(self): # player stands still if not moving elif event.type == pygame.KEYUP: - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NOP)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NOP)) self.record_action_and_obs(PlayerAction.NOP, obs) if self.keyboard_input: keys = pygame.key.get_pressed() if keys[pygame.K_UP]: # up - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NORTH)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.NORTH)) self.record_action_and_obs(PlayerAction.NORTH, obs) elif keys[pygame.K_DOWN]: # down - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.SOUTH)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.SOUTH)) self.record_action_and_obs(PlayerAction.SOUTH, obs) elif keys[pygame.K_LEFT]: # left - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.WEST)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.WEST)) self.record_action_and_obs(PlayerAction.WEST, obs) elif keys[pygame.K_RIGHT]: # right - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.EAST)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.EAST)) self.record_action_and_obs(PlayerAction.EAST, obs) self.running = self.env.unwrapped.game.running @@ -190,12 +190,12 @@ def handle_interactive_events(self): if event.type == pygame.KEYDOWN and self.keyboard_input: # b key cancels interaction if event.key == pygame.K_b: - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.CANCEL)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.CANCEL)) self.record_action_and_obs(PlayerAction.CANCEL, obs) # return key continues interaction elif event.key == pygame.K_RETURN: - obs, _, _, _ = self.env.step(self.single_player_action(PlayerAction.INTERACT)) + obs, _, _, _, _ = self.env.step(self.single_player_action(PlayerAction.INTERACT)) self.record_action_and_obs(PlayerAction.INTERACT, obs) # i key turns off inventory rendering elif event.key == pygame.K_i: From 89fc038ff9568f6049abe2f6cec465671983ea7e Mon Sep 17 00:00:00 2001 From: tia-chen Date: Wed, 13 Mar 2024 00:51:25 -0400 Subject: [PATCH 07/10] Added user input number of steps to reverse and paused functionality during reverse replay --- socket_env.py | 50 ++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/socket_env.py b/socket_env.py index 8c5a1db..effb39e 100755 --- a/socket_env.py +++ b/socket_env.py @@ -43,6 +43,9 @@ def record_action_and_obs(self, action, obs, arg=0): (str(self.curr_player), str(action).split(".")[-1], str(arg), str(timestamp))) + # print("appending action: ", (str(self.curr_player), + # str(action).split(".")[-1], + # str(arg), str(timestamp))) # Record observation self.env.unwrapped.game.save_state(obs=(str(timestamp), obs)) @@ -60,10 +63,15 @@ def reverse(self, replay_index=None): history_len = len(self.env.unwrapped.game.action_history) + num_steps = int(input("How many commands would you like to reverse/revert? ")) + if num_steps < 0: + print("Error: Cannot reverse by negative number of steps!") + exit(1) + if replay_index == None: - replay_index = 0 if history_len < 50 else history_len - 50 + replay_index = 0 if history_len < num_steps else history_len - num_steps else: - replay_index = 0 if replay_index < 0 else replay_index + replay_index = 0 if (replay_index - num_steps) < 0 else replay_index - num_steps print("replay_index: ", replay_index) timestamp = self.env.unwrapped.game.action_history[replay_index][-1] @@ -80,8 +88,11 @@ def reverse(self, replay_index=None): for action_tuple in self.env.unwrapped.game.action_history[replay_index + 1:]: for event in pygame.event.get(): if event.type == pygame.KEYDOWN and event.key == pygame.K_z: - self.reverse(replay_index=replay_index - 50) + self.reverse(replay_index=replay_index) return + elif event.type == pygame.KEYDOWN and event.key == pygame.K_p: + if (self.pause_game(replay_index)): + return print("action_tuple[:-1]: ", action_tuple[:-1]) action_list = list(action_tuple[:-1]) action_list[0] = int(action_list[0]) @@ -98,8 +109,15 @@ def reverse(self, replay_index=None): self.env.unwrapped.step_count = step_count - def pause_game(self): + ''' + Purpose: Pauses game until key p is hit again + Note: Could be given a starting point of which index in history to + start reverse from if user requests for a reverse or revert in + this function + ''' + def pause_game(self, reverse_index=None): waiting = True + replayed_history = False while waiting: for event in pygame.event.get(): if event.type == pygame.QUIT or (event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE): @@ -107,9 +125,13 @@ def pause_game(self): elif event.type == pygame.KEYDOWN and event.key == pygame.K_p: waiting = False elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: - # TIA NOTES: If we want to implement a revert function in - # keyboard input, we can slightly modify this to accomodate - self.reverse() + # need to start reverse from potentially middle of the game history + if reverse_index: + self.reverse(reverse_index) + replayed_history = True + else: + self.reverse() + return replayed_history def handle_exploratory_events(self): player = self.env.unwrapped.game.players[self.curr_player] @@ -120,11 +142,11 @@ def handle_exploratory_events(self): filename = input("Please enter a filename for saving the state.\n>>> ") self.env.unwrapped.game.save_state(filename=filename) print("State saved to {filename}.".format(filename=filename)) - elif self.env.unwrapped.game.is_playback: - if event.type == pygame.KEYDOWN and event.key == pygame.K_p: + elif event.type == pygame.KEYDOWN and event.key == pygame.K_p: self.pause_game() elif event.type == pygame.KEYDOWN and event.key == pygame.K_z: - self.reverse() + print("z pressed without pause") + self.reverse() elif event.type == pygame.KEYDOWN and event.key == pygame.K_r: self.env.unwrapped.game.toggle_record() elif self.keyboard_input: @@ -473,10 +495,14 @@ def accept_wrapper(sock): sent = sock.send(data.outb) # Should be ready to write data.outb = data.outb[sent:] if should_perform_action: + handler.curr_player = player + handler.env.curr_player = player + handler.env.unwrapped.game.curr_player = player + obs, reward, done, info, violations = env.step(tuple(curr_action)) - for index, player in enumerate(curr_action): - handler.record_action_and_obs(ACTION_COMMANDS[player[0]], obs) + for index, player_action in enumerate(curr_action): + handler.record_action_and_obs(ACTION_COMMANDS[player_action[0]], obs) for key, mask, command in e: json_to_send = get_action_json(command, env, obs, reward, done, info, violations) From 87f570ae3b1b73425c21770efc80012e51beb6f0 Mon Sep 17 00:00:00 2001 From: tia-chen Date: Wed, 13 Mar 2024 11:33:49 -0400 Subject: [PATCH 08/10] minor pause logic editing --- socket_env.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/socket_env.py b/socket_env.py index effb39e..5349dde 100755 --- a/socket_env.py +++ b/socket_env.py @@ -117,7 +117,6 @@ def reverse(self, replay_index=None): ''' def pause_game(self, reverse_index=None): waiting = True - replayed_history = False while waiting: for event in pygame.event.get(): if event.type == pygame.QUIT or (event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE): @@ -128,10 +127,11 @@ def pause_game(self, reverse_index=None): # need to start reverse from potentially middle of the game history if reverse_index: self.reverse(reverse_index) - replayed_history = True + return True else: self.reverse() - return replayed_history + return False + return False def handle_exploratory_events(self): player = self.env.unwrapped.game.players[self.curr_player] From ef12c9841681caf59b577a95d2b45aafc4216a66 Mon Sep 17 00:00:00 2001 From: Tia Chen <108846164+Tia-Chen@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:35:25 -0400 Subject: [PATCH 09/10] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 47deced..3350c7a 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,8 @@ Below is a table of the gym ids of the actions available in this environment (le | 8 | Pick Up | N/A | | N/A | View inventory | 'i' | | N/A | View shopping list | 'l' | +| N/A | Pause | 'p' | +| N/A | reverse/revert | 'z' | Actions are formatted as tuples. In the pick-up action an agent can specify an index that corresponds with a food item. @@ -195,6 +197,8 @@ While the best way to get a sense for how the game works is to try running it in * Toggle shopping cart: if the user is currently holding a shopping cart, this lets go of the cart. Otherwise, picks up the cart. Note that to pick up a cart, the user must be behind the shopping cart (adjacent to the handle). * Display inventory: displays a list of the food (a) that the player is holding, or (b) that is in the player’s cart, and the quantities of each food. Only available in keyboard mode; not necessary in gym/socket mode (since this information is already available in the observation). * Display shopping list: displays a list of the food on the player’s shopping list, and the quantities of each food. Only available in keyboard mode; not necessary in gym/socket mode (since this information is already available in the observation). +* Pause: Pauses the game play. Generally only useful in history playback +* Reverse/revert: Actions are reversed to be played back again if the game play is playing back history sent from replay_agent_actions.py. The same commands will be played back again after the reverse. Otherwise, this reverts the player actions and allows different commands to be sent. If the revert command is called when the user is in an action recording game state, the action history will also be altered so that the reverted actions do not show up in history. ### General facts From 5ad6eb5b495dceb87bf655cb33bae8c641a8316b Mon Sep 17 00:00:00 2001 From: Tia Chen <108846164+Tia-Chen@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:35:47 -0400 Subject: [PATCH 10/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3350c7a..3a97d47 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ Below is a table of the gym ids of the actions available in this environment (le | N/A | View inventory | 'i' | | N/A | View shopping list | 'l' | | N/A | Pause | 'p' | -| N/A | reverse/revert | 'z' | +| N/A | Reverse/Revert | 'z' | Actions are formatted as tuples. In the pick-up action an agent can specify an index that corresponds with a food item.