before the question 1111 your can create a radio list choice question(987). with javascript you can use the token value to auto select a question with list radio hidded.
Then create a condition for show qid 1111 if radio list = 1
here a example of question 987:
script
function Custom_On_Load(){
document.getElementById("question987"

.style.display='none';
document.getElementById("move2"

.style.display='none';
setTimeout("Select_route()",100);
}
function Select_route(){
var routeA="{TOKEN}".charAt(0);
switch (routeA) {
case "1":
document.getElementById('answer51965X95X9871'

.checked='true';
break;
default:
document.getElementById('answer51965X95X9877'

.checked='true';
break;
}
document.limesurvey.move.value = 'movenext';
document.limesurvey.submit();
}
script
the Custom_On_Load function (see workaround) check the first character of token and if == 1 check the first option then submit the question
ps: you need to configure the navigation survey with: question by question.