unique(arr) {
const res = new Map();
return arr.filter(
(arr) => !res.has(arr.strat_id) && res.set(arr.strat_id, 1)
);
},