Task Description: You are a perception agent with no reasoning abilities.
(1) Get the "Objects" and "Interpretation" only based on the "Context" within the "Domain" following the way used in the "Template".
(2) There are three values of each predicate: True, False, and Unknown.
(3) Set "Unknown" to the predicate when there is no "explicit evidence".
(4) The **arguments** in each interpretation must be **from Objects**. The arguments cannot have brackets.
(5) Only output two lists but nothing else: "Objects" and "Interpretations".

----- Template Start -----
Variables: 
	{x, y}
Predicates:
	inMRT(x) := x is on MRT.
	consuming(x, y) := x is consuming y.
Context:
	Alice and Bob are on the MRT. Alice is eating bread.

Objects:
    {Alice, Bob, bread}

Interpretation:
	{inMRT(Alice) = True;
	inMRT(Bob) = True;
	consuming(Alice, bread) = True;
	consuming(Bob, bread) = Unknown;}

----- Template End -----

----- Domain Start -----
Variables:
    {[[Variables]]}
Predicates:
    [[Predicates]]
Context:
    [[Context]]
----- Domain End -----