I start writhing my first dApp on RIDE language and I noticed that in smart account these 3 lines of code
{-# STDLIB_VERSION 2 #-}
{-# CONTENT_TYPE EXPRESSION #-}
{-# SCRIPT_TYPE ACCOUNT #-}
are different in ride4dapps code example in the IDE
{-# STDLIB_VERSION 3 #-}
{-# CONTENT_TYPE DAPP #-}
{-# SCRIPT_TYPE ACCOUNT #-}
what are these 3 lines for?