Consider the following database for the meals of lunch and dinner. [20 points) lunch dinner entre: sandwhich sides: chips potato salt lemonade lemon sugar entre: spaghetti sides: bread egg flour greentea green tea 2.1 Create facts for the entres: entre(X, Y) where X is lunch or dinner and Y is the entre. Create facts for the side: side(X, Y) where X is lunch or dinner Y is the side. Create facts for the ingredients : ingredient(X, Y) where X is the side and Y is the ingredient. [10] 2.2 Create a rule meal(X, Y) where X is lunch or dinner and is the food that will be served. For example, meal(lunch, X) should return sandwhich, chips, and lemonade. [5] 2.3 Create a rule shoppinglist(X, Y) where X is lunch or dinner and Y is the ingredient needed. For example, shoppinglist(dinner, X) should return egg, flour, green, and tea.