indexData = {
const weightAssignments = [
{ questionFragment: "pharmaceuticals", weight: 0.1 },
{ questionFragment: "impose large tariffs in 2025", weight: 0.4 },
{ questionFragment: "large tariffs in his first 6 months", weight: 0.1 },
{ questionFragment: "remove majority of reciprocal tariffs before 90 day deadline", weight: 0.2 },
{ questionFragment: "insider trading", weight: 0.1 },
{ questionFragment: "courts block", weight: 0.1 },
];
weightAssignments.forEach(assignment => {
addWeightToMarket(otherMarkets, assignment.questionFragment, assignment.weight);
});
return otherMarkets;
}