Lines Matching refs:me

657 				const me = BotMon.live.data.analytics;
758 me.addToIpRanges(v);
766 me.addBrowserPlatform(v);
770 me.addToRefererList(pv._ref);
771 me.addToPagesList(pv.pg);
776 me.addToCountries(v.geo, v._country, v._type);
842 const me = BotMon.live.data.analytics;
846 for (let i = 0; i < me._pagesList.length; i++) {
847 if (me._pagesList[i].id == pageId) {
848 pgObj = me._pagesList[i];
859 me._pagesList.push(pgObj);
867 const me = BotMon.live.data.analytics;
868 return me._pagesList.toSorted( (a, b) => {
879 const me = BotMon.live.data.analytics;
886 const refInfo = me.getRefererInfo(ref);
890 for (let i = 0; i < me._refererList.length; i++) {
891 if (me._refererList[i].id == refInfo.id) {
892 refObj = me._refererList[i];
901 me._refererList.push(refObj);
945 const me = BotMon.live.data.analytics;
947 return me._makeTopList(me._refererList, max);
962 const me = BotMon.live.data.analytics;
1020 const me = BotMon.live.data.analytics;
1028 arr = me._countries.human;
1032 arr = me._countries.bot;
1062 const me = BotMon.live.data.analytics;
1069 arr = me._countries.human;
1072 arr = me._countries.bot;
1079 return me._makeTopList(arr, max);
1089 const me = BotMon.live.data.analytics;
1094 let bRec = me._browsers.find( it => it.id == browserRec.id);
1101 me._browsers.push(bRec);
1110 let pRec = me._platforms.find( it => it.id == platformRec.id);
1117 me._platforms.push(pRec);
1127 const me = BotMon.live.data.analytics;
1129 return me._makeTopList(me._browsers, max);
1134 const me = BotMon.live.data.analytics;
1136 return me._makeTopList(me._platforms, max);
1142 const me = BotMon.live.data.analytics;
1144 const list = me.groups[type];
1159 const me = BotMon.live.data.analytics;
1199 let ipRec = me._ipRanges.find( it => it.g == ipGroup);
1230 me._ipRanges.push(ipRec);
1240 const me = BotMon.live.data.analytics;
1242 return me._makeTopList(me._ipRanges, max);
1464 const me = BotMon.live.data;
1472 me.ipRanges._groups = json.groups;
1478 me.ipRanges.add(range);
1498 const me = BotMon.live.data.ipRanges;
1510 me._list.push(item);
1516 const me = BotMon.live.data.ipRanges;
1518 for (let i=0; i < me._groups.length; i++) {
1519 const it = me._groups[i];
1530 const me = BotMon.live.data.ipRanges;
1535 for (let i=0; i < me._list.length; i++) {
1536 const ipRange = me._list[i];
1570 const me = BotMon.live.data;
1577 if (json.threshold) me._threshold = json.threshold;
1581 me.rules._rulesList = json.rules;
1601 const me = BotMon.live.data.rules;
1603 for (let i=0; i<me._rulesList.length; i++) {
1604 const rule = me._rulesList[i];
1617 const me = BotMon.live.data.rules;
1625 for (let i=0; i<me._rulesList.length; i++) {
1626 const rule = me._rulesList[i];
1630 if (me.func[rule.func]) {
1631 if(me.func[rule.func](visitor, ...params)) {
1642 r.isBot = (r.val >= me._threshold);