*************************************** RE market state addition steps *************************************** The following docs cover the steps to add new state-specific highlights, tour data, special features and social media boilerplate, that will be used when generating the reports for a home in the new state. The default state for the boilerplate is Virginia, i.e. if there is no state-specific boilerplate for a home that is being certified, the Virginia boilerplate text is used. Make sure to check implementation for previous states to have a better understanding of the following instructions.To add a new state: 1. create a state python package for the new state under reports.utils.remarket. 2. create a conds module that has all the new state's conditions that inherit from Virginia conditions and boilerplate classes should inherit from corresponding Virginia boilerplate class. 3. create a cond_grps module whose classes inherit from virginia cond_grps and point to the new state condition classes. 4. create a asset_types module whose classes inherit from virginia asset_types and point to the new state condition grps classes. 5. create an inventory module whose class inherits from virginia RemarketInventory and points to the new state's asset type classes. 6. add condition to dispatch the new state's RemarketInventory for homes in the new state to the remarket.RemarketStateManager.get_remarket_inventory(). 7. Now you can make changes as necessary for the new state changing the boilerplate text or changing conditions, ...