1possibleResponse(whatIf(not(receive(andrewDougherty,foodStamps))),getJobImmediately).
    2
    3planForContingency(powerOutageTo1125KnocksOutPowerToFLPSite).
    4
    5planForContingency(whatIf(not(receive(andrewDougherty,foodStamps)))).
    9planForContingency(whatHappensIfIDontGetDisability).
 howLongIsFamilyWillingToHelpMeWhileIAmWaitingToFindOutAboutDisability
   12possibleResponse(whatIf(not(receive(andrewDougherty,disability))),getJobImmediately).
   13
   14suggests(meredithMcGhan,possibleResponse(whatHappensIfIDontGetDisability,moveToMichigan)).
   18planForContingency(whatIf(evaLosesHerJob)).
   19planForContingency(whatIf(evaMovesBackInWithUs)).
   26planForContingency(whatIf(has(Person,bloodSugarAttack))) :-
   27	isa(Person,person).
   28
   29planForContingency(whatIf(has(Person,hospitalization))) :-
   30	isa(Person,person).
   31
   32planForContingency(whatIf(has(Person,physicalFall))) :-
   33	isa(Person,person).
   37planForContingency(whatIf((hasWithDrawal(Withdrawal,BankAccount),unexpected(Withdrawal)))) :-
   38	isa(BankAccount,backAccount).
   39
   40planForContingency(whatIf(intervenes(Situation,God))) :-
   41	isa(God,god),
   42	hasSituation(Situation).
   43
   44planForContingency(whatIf('(come up with plan for if no one to help Andy, Andy sick, Andy can not take care of Mom, Mom can not take care of Andy)'))