diff options
| author | HEATAO <[email protected]> | 2021-10-22 11:35:50 +0800 |
|---|---|---|
| committer | HEATAO <[email protected]> | 2021-10-22 11:35:50 +0800 |
| commit | cd89b971a33b5f944f07ce8dc10330dcc40298da (patch) | |
| tree | 07de63d4708f206d3456142eae3bdc2388681ea1 | |
| parent | 0e56eea95c75cb23a80e3a8ed7fbbd6c2028d83a (diff) | |
add evaluate module
43 files changed, 4347 insertions, 130 deletions
@@ -6,7 +6,7 @@ <groupId>cn.an.iie</groupId> <artifactId>VideoPortalDetection</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0-test</version> <!-- **.xml写在src找不到问题解决方案 --> <build> @@ -26,6 +26,32 @@ <directory>src/main/resources</directory> </resource> </resources> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <archive> + <manifest> + <mainClass> + cn.ac.iie.mining.MiningModule + </mainClass> + </manifest> + </archive> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> <properties> @@ -108,4 +134,5 @@ <!--<scope>provided</scope>--> </dependency> </dependencies> + </project>
\ No newline at end of file diff --git a/src/main/java/META-INF/MANIFEST.MF b/src/main/java/META-INF/MANIFEST.MF new file mode 100644 index 0000000..183a388 --- /dev/null +++ b/src/main/java/META-INF/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0
+Main-Class: cn.ac.iie.mining.MiningModule
+
diff --git a/src/main/java/cn/ac/iie/Utils/JedisPoolUtils.java b/src/main/java/cn/ac/iie/Utils/JedisPoolUtils.java index a237718..46cb0d9 100644 --- a/src/main/java/cn/ac/iie/Utils/JedisPoolUtils.java +++ b/src/main/java/cn/ac/iie/Utils/JedisPoolUtils.java @@ -29,7 +29,9 @@ public class JedisPoolUtils { static { Properties props = new Properties(); try { - props.load(new java.io.FileInputStream("src/main/resources/redis.properties")); + // 在jar包中调用resources中的资源,要考虑路径的问题,用getClassLoader读取工作目录,由于jar属于压缩文件,所以不能用路径来读取,会出现jar! + //props.load(new java.io.FileInputStream(JedisPoolUtils.class.getClassLoader().getResource("redis.properties").getFile())); + props.load(JedisPoolUtils.class.getClassLoader().getResourceAsStream("redis.properties")); } catch (IOException e) { e.printStackTrace(); } diff --git a/src/main/java/cn/ac/iie/client/CKClient.java b/src/main/java/cn/ac/iie/client/CKClient.java index 6c59745..d77bdf4 100644 --- a/src/main/java/cn/ac/iie/client/CKClient.java +++ b/src/main/java/cn/ac/iie/client/CKClient.java @@ -38,7 +38,7 @@ public class CKClient { yspHost = eachVideo.getUrl(); if (yspHost.startsWith("200.200.200.200")) continue; - trafficLogList = avListMapper.getRelationListWithHost(eachFoundTime, eachClient_ip,10); + trafficLogList = avListMapper.getRelationListWithHost(eachFoundTime, eachClient_ip,10, 10); String relateHost; for (TrafficLog trafficLog : trafficLogList) { if (trafficLog.getHttp_host() != null && trafficLog.getHttp_host().trim().length() != 0) diff --git a/src/main/java/cn/ac/iie/client/VideoConsumer.java b/src/main/java/cn/ac/iie/client/VideoConsumer.java index bb8fa03..d05f63f 100644 --- a/src/main/java/cn/ac/iie/client/VideoConsumer.java +++ b/src/main/java/cn/ac/iie/client/VideoConsumer.java @@ -19,7 +19,7 @@ import java.util.concurrent.atomic.AtomicBoolean; public class VideoConsumer { private final Logger logger = LoggerFactory.getLogger(this.getClass().getName()); - public static final String groupId="test"; + public static final String groupId="test1"; public static final AtomicBoolean isRunning=new AtomicBoolean(true); private ObjectMapper mapper = new ObjectMapper(); @@ -33,7 +33,8 @@ public class VideoConsumer { KafkaConsumer<String,String> consumer=new KafkaConsumer<>(properties); //订阅主题 - consumer.subscribe(Arrays.asList(GetConf.KAFKA_AV_TOPIC)); + //consumer.subscribe(Arrays.asList(GetConf.KAFKA_AV_TOPIC)); + consumer.subscribe(Arrays.asList(GetConf.KAFKA_AV_TOPIC, "CONNECTION-RECORD-LOG")); try { ObjectMapper objectMapper = new ObjectMapper(); // 放到循环之外,性能会好一点 @@ -52,7 +53,7 @@ public class VideoConsumer { JsonNode jsonNode = objectMapper.readTree(record.value()); //获取client_ip, client_port, found_time, recv_time, server_ip, server_port, url字段值 JsonNode client_ip = jsonNode.get("client_ip"); - String cip = client_ip.asText(); + //String cip = client_ip.asText(); JsonNode fount_time = jsonNode.get("found_time"); JsonNode recv_time = jsonNode.get("recv_time"); JsonNode url = jsonNode.get("url"); @@ -61,7 +62,9 @@ public class VideoConsumer { // staticFrequency.relationSSL2Redis(url.asText(), cip, fount_time.asLong(), 5); // System.out.println(url.asText()); - System.out.println(record.value()); + System.out.println(record.value()); + if (url != null) + System.out.println(url.asText()); } // consumer.commitSync(); } @@ -113,7 +116,8 @@ public class VideoConsumer { // 因为是做测试,所以这里就不自动提交下标了 properties.put("enable.auto.commit", "false"); -// properties.put("auto.offset.reset", "earliest"); + //properties.put("auto.offset.reset", "earliest"); + properties.put("auto.offset.reset", "latest"); return properties; } diff --git a/src/main/java/cn/ac/iie/config/Configurations.java b/src/main/java/cn/ac/iie/config/Configurations.java index 7c5d2fe..4294233 100644 --- a/src/main/java/cn/ac/iie/config/Configurations.java +++ b/src/main/java/cn/ac/iie/config/Configurations.java @@ -11,7 +11,7 @@ public class Configurations { static { try { propCommon.load(Configurations.class.getClassLoader().getResourceAsStream("video_data.properties")); - System.out.println("video_data.properties加载成功"); + System.out.println("配置文件video_data.properties加载成功"); } catch (Exception e) { propCommon = null; System.err.println("配置加载失败"); @@ -19,7 +19,7 @@ public class Configurations { } public static String getStringProperty(Integer type, String key) { - if(type == 0){ + if(type == 0 && propCommon.getProperty(key) != null){ return propCommon.getProperty(key); } else { return null; @@ -27,18 +27,26 @@ public class Configurations { } public static Integer getIntProperty(Integer type, String key) { - if(type == 0){ + if(type == 0 && propCommon.getProperty(key) != null){ return Integer.parseInt(propCommon.getProperty(key)); } else { return null; } } + public static Double getDoubleProperty(Integer type, String key) { + if(type == 0 && propCommon.getProperty(key) != null){ + return Double.parseDouble(propCommon.getProperty(key)); + } else { + return null; + } + } + public static void setInterval(String intervalWindows) { propCommon.setProperty("interval", intervalWindows); FileOutputStream oFile = null; try { - oFile = new FileOutputStream("video_data.properties"); + oFile = new FileOutputStream("./data/video_data.properties"); propCommon.store(oFile, "statistic interval windows"); oFile.close(); } catch (IOException e) { diff --git a/src/main/java/cn/ac/iie/config/GetConf.java b/src/main/java/cn/ac/iie/config/GetConf.java index ee08964..9c2f4d6 100644 --- a/src/main/java/cn/ac/iie/config/GetConf.java +++ b/src/main/java/cn/ac/iie/config/GetConf.java @@ -6,5 +6,5 @@ public class GetConf implements Serializable { private static final long serialVersionUID = 1641809911536544588L; public static final String BOOTSTRAP_SERVERS = Configurations.getStringProperty(0, "bootstrap.servers"); - public static final String KAFKA_AV_TOPIC = Configurations.getStringProperty(0, "kafka.avc.topic"); + public static final String KAFKA_AV_TOPIC = Configurations.getStringProperty(0, "kafka.av.topic"); } diff --git a/src/main/java/cn/ac/iie/intervalStatics/HuaYanHttpInterval.java b/src/main/java/cn/ac/iie/intervalStatics/HuaYanHttpInterval.java index bb77c72..6484c7c 100644 --- a/src/main/java/cn/ac/iie/intervalStatics/HuaYanHttpInterval.java +++ b/src/main/java/cn/ac/iie/intervalStatics/HuaYanHttpInterval.java @@ -5,30 +5,18 @@ import cn.ac.iie.config.Configurations; import cn.ac.iie.mapper.AVDataListMapper; import cn.ac.iie.pojo.AVlog; import cn.ac.iie.pojo.TrafficLog; -import org.apache.ibatis.session.Configuration; import org.apache.ibatis.session.SqlSession; -import org.junit.Test; -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; +import java.io.*; +import java.util.*; public class HuaYanHttpInterval { - private double allInterval = 0; - private int count = 0; - // 因为数据库存储发现时间的最小单位是秒,所以这里一定是整数 - private List<Integer> intervals; - - // 0706完成这一部分 - /** * 希望找到包含90%-95%的的时间窗口 */ - @Test public void getHTTPTimeWindows() { - - // 开始时间 - long stime = System.currentTimeMillis(); + double allInterval = 0; + List<Integer> intervals; // 因为数据库存储发现时间的最小单位是秒,所以这里一定是整数 SqlSession sqlSession = SqlSessionFactoryUtils.getSqlSessionFactory().openSession(); AVDataListMapper avListMapper = sqlSession.getMapper(AVDataListMapper.class); @@ -38,22 +26,22 @@ public class HuaYanHttpInterval { List<TrafficLog> trafficLogList; for(AVlog eachVideo : aVRefererlogList) { String eachClient_ip = eachVideo.getClient_ip(); - String eachRef = eachVideo.getReferer(); + String eachRefHost = eachVideo.getReferer_host(); long eachFoundTime = eachVideo.getFound_time(); // 依次调用,并且只取一个,因为往往多个的时间是一样的 - trafficLogList = avListMapper.getReferPortal(eachFoundTime, eachClient_ip, eachRef); + trafficLogList = avListMapper.getReferPortal(eachFoundTime, eachClient_ip, eachRefHost); if (trafficLogList.size() > 0) { int eachInterval = (int) (eachFoundTime - trafficLogList.get(0).getCommon_start_time()); allInterval += eachInterval; - count += 1; intervals.add(eachInterval); } } + int count = intervals.size(); Collections.sort(intervals); int index = (int) (intervals.size()*0.95); - System.out.println("共测试" + intervals.size() + "个,95%的个数为" + index); + System.out.println("共测试" + count + "个,95%的个数为" + index); System.out.println("95%的出现间隔为: " + intervals.get(index)); System.out.println("90%的出现间隔为: " + intervals.get((int) (intervals.size()*0.9))); System.out.println("80%的出现间隔为: " + intervals.get((int) (intervals.size()*0.8))); @@ -61,7 +49,57 @@ public class HuaYanHttpInterval { System.out.println("中位数为:" + intervals.get(intervals.size() / 2)); System.out.println("最长出现间隔为: " + intervals.get(count-1)); Configurations.setInterval(String.valueOf(intervals.get(index))); + } + /** + * 生成明文能找到referer的测试集,每一行如下格式: + * client_ip, url, 经过处理的referer, fount_time, refer的start_time, interval + */ + public void generateTrainSet() { + SqlSession sqlSession = SqlSessionFactoryUtils.getSqlSessionFactory().openSession(); + AVDataListMapper avListMapper = sqlSession.getMapper(AVDataListMapper.class); + // 这里sql应该改为distinct + List<AVlog> aVRefererlogList = avListMapper.getAVListWithReferer(); + Set<String> trainSet = new HashSet<>(); + + System.out.println(String.format("目前共%s有referer", aVRefererlogList.size())); + List<TrafficLog> trafficLogList; + for(AVlog eachVideo : aVRefererlogList) { + String eachClient_ip = eachVideo.getClient_ip(); + String eachRefHost = eachVideo.getReferer_host(); + long eachFoundTime = eachVideo.getFound_time(); + + trafficLogList = avListMapper.getReferPortal(eachFoundTime, eachClient_ip, eachRefHost); + if (trafficLogList.size() > 0) { + int eachInterval = (int) (eachFoundTime - trafficLogList.get(0).getCommon_start_time()); + String eachVideoUrl = eachVideo.getUrl(); + long referTime = trafficLogList.get(0).getCommon_start_time(); + String line = eachClient_ip + " " + + eachVideoUrl + " " + + eachRefHost + " " + + eachFoundTime + " " + + referTime + " " + + eachInterval; + trainSet.add(line); + } + } + + System.out.println("候选集大小为: " + trainSet.size()); + try (Writer writer = new OutputStreamWriter(new FileOutputStream("./data/testSet.txt"), "UTF-8")) { + for (String line: trainSet) { + writer.write(line + "\r\n"); + } + } catch (IOException e) { + e.printStackTrace(); + } + + } + + public static void main(String[] args) { + // 开始时间 + long stime = System.currentTimeMillis(); + HuaYanHttpInterval huaYanHttpInterval = new HuaYanHttpInterval(); + huaYanHttpInterval.generateTrainSet(); // 结束时间 long etime = System.currentTimeMillis(); System.out.printf("执行时长:%d 毫秒.", (etime - stime)); diff --git a/src/main/java/cn/ac/iie/intervalStatics/Statistics.java b/src/main/java/cn/ac/iie/intervalStatics/Statistics.java index ca16c7c..28065ad 100644 --- a/src/main/java/cn/ac/iie/intervalStatics/Statistics.java +++ b/src/main/java/cn/ac/iie/intervalStatics/Statistics.java @@ -4,10 +4,8 @@ import cn.ac.iie.Utils.SqlSessionFactoryUtils; import cn.ac.iie.Utils.URLHandleUtils; import cn.ac.iie.mapper.AVDataListMapper; import cn.ac.iie.pojo.AVlog; -import com.sun.xml.internal.ws.policy.privateutil.PolicyUtils; import org.apache.ibatis.session.SqlSession; import org.junit.Test; -import sun.awt.geom.AreaOp; import java.io.BufferedWriter; import java.io.FileWriter; diff --git a/src/main/java/cn/ac/iie/mapper/AVDataListMapper.java b/src/main/java/cn/ac/iie/mapper/AVDataListMapper.java index e1491ef..61808eb 100644 --- a/src/main/java/cn/ac/iie/mapper/AVDataListMapper.java +++ b/src/main/java/cn/ac/iie/mapper/AVDataListMapper.java @@ -10,7 +10,9 @@ public interface AVDataListMapper { public List<TrafficLog> getRelationList(@Param("found_time") long found_time, @Param("intervalTime") int intervalTime); public List<TrafficLog> getRelationListWithHost(@Param("found_time") long found_time, - @Param("client_ip") String client_ip, @Param("intervalTime") int intervalTime); + @Param("client_ip") String client_ip, + @Param("startInterval") int startInterval, + @Param("endInterval") int endInterval); public List<AVlog> getAVList(); @@ -18,11 +20,13 @@ public interface AVDataListMapper { public List<TrafficLog> getReferPortal(@Param("found_time") long found_time, @Param("client_ip") String client_ip, - @Param("host") String host); + @Param("host") String refer); public List<AVlog> statisticsUA(); - public int cumulativeData(@Param("urlPath") String urlPath, @Param("effectiveTime") long effectiveTime); + public int cumulativeData(@Param("likeURL") String urlPath, @Param("effectiveTime") long effectiveTime); - public List<AVlog> getHistoryHost(@Param("host") String host); + public List<AVlog> getHistoryHost(@Param("likeURL") String host); + + public List<AVlog> getHostNeedMining(@Param("taskDays") Integer taskTime); } diff --git a/src/main/java/cn/ac/iie/mapper/AVDataListMapper.xml b/src/main/java/cn/ac/iie/mapper/AVDataListMapper.xml index 86da199..9df7097 100644 --- a/src/main/java/cn/ac/iie/mapper/AVDataListMapper.xml +++ b/src/main/java/cn/ac/iie/mapper/AVDataListMapper.xml @@ -15,26 +15,28 @@ from `av_event_log_local` </select> + <!--在大数据量场景下,这里可能需要加limit--> <select id="getRelationListWithHost" resultType="cn.ac.iie.pojo.TrafficLog"> - select common_client_ip, common_client_port, common_server_ip, common_server_port, common_recv_time, + select common_client_ip, common_server_ip, common_start_time, http_url, http_host, http_domain, ssl_sni, ssl_cn from `connection_record_log_local` - where common_start_time >= (#{found_time} - #{intervalTime}) - and common_start_time <= (#{found_time} + #{intervalTime}) + where common_start_time >= (#{found_time} - #{startInterval}) + and common_start_time <= (#{found_time} + #{endInterval}) and common_client_ip = #{client_ip} + and (common_schema_type='HTTP' or common_schema_type='SSL') </select> <select id="getAVListWithReferer" resultType="cn.ac.iie.pojo.AVlog"> - select client_ip, server_ip, url, referer, recv_time, found_time, expire_time + select client_ip, server_ip, url, domain(referer) as referer_host, recv_time, found_time, expire_time from `av_event_log_local` where length(referer) > 0 </select> <select id="getReferPortal" resultType="cn.ac.iie.pojo.TrafficLog"> - select common_client_ip, common_client_port, common_server_ip, common_server_port, common_recv_time, - common_start_time, http_url, http_host, http_domain, ssl_sni, ssl_cn + select common_client_ip, common_client_port, common_server_ip, common_server_port, + common_start_time, http_url, http_host, http_domain, ssl_sni from `connection_record_log_local` - where common_start_time >= (#{found_time} - 30) + where common_start_time >= (#{found_time} - 60) and common_start_time <= (#{found_time} + 10) and common_client_ip = #{client_ip} and (http_host = #{host} or ssl_sni = #{host}) @@ -47,15 +49,21 @@ </select> <select id="cumulativeData" resultType="Integer"> - select count(url) from `av_event_log_local` - where url like #{urlPath} and recv_time >= #{effectiveTime} + select count(url) + from `av_event_log_local` + where url like #{likeURL} and found_time >= #{effectiveTime} </select> <select id="getHistoryHost" resultType="cn.ac.iie.pojo.AVlog"> - select client_ip, server_ip, url, recv_time, found_time, expire_time + select client_ip, server_ip, url, found_time + from `av_event_log_local` + where url like #{likeURL} + order by found_time desc + limit 80 + </select> + <select id="getHostNeedMining" resultType="cn.ac.iie.pojo.AVlog"> + select client_ip, server_ip, url, found_time from `av_event_log_local` - where url like #{host} - order by recv_time desc - limit 100 + where found_time >= #{taskTime} </select> </mapper>
\ No newline at end of file diff --git a/src/main/java/cn/ac/iie/mining/EffectEvaluation.java b/src/main/java/cn/ac/iie/mining/EffectEvaluation.java new file mode 100644 index 0000000..55c1988 --- /dev/null +++ b/src/main/java/cn/ac/iie/mining/EffectEvaluation.java @@ -0,0 +1,221 @@ +package cn.ac.iie.mining; + + +import cn.ac.iie.Utils.JedisPoolUtils; +import cn.ac.iie.Utils.URLHandleUtils; +import org.apache.spark.sql.Dataset; +import org.apache.spark.sql.Row; +import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import redis.clients.jedis.Jedis; + +import java.io.*; +import java.util.*; + +public class EffectEvaluation { + private static Logger logger = LoggerFactory.getLogger(EffectEvaluation.class); + + /** + * 评估指标:平均出现出现index最小的顺序,最小顺序中在第1次出现的占比,在前5次出现的占比,在前10次出现的占比,不出现的占比 + * 计算:出现次数,不出现的次数,每个方案出现的index之和,每个方案第1次出现的次数,每个方案在前5次出现的次数,每个方案在前10次出现的次数 + */ + public void evaluateFromFile() { + try (InputStream is = this.getClass().getClassLoader().getResourceAsStream("testSet.txt")){ + if (is == null) { + System.out.println("评估文件不存在"); + System.exit(0); + } + BufferedReader br = new BufferedReader(new InputStreamReader(is)); + MiningService miningService = new MiningService(); + int validateYspCmt = 0; + int validateYspSum = 0; + int yspCmt = 0; + Map<String, Integer[]> evaluateMap = new HashMap<>(); + + int testCnt = 0; + + // client_ip, url, 经过处理的referer, fount_time, refer的start_time, interval + String line = ""; + while((line = br.readLine())!=null) { + String[] item = line.split(" "); + String cIp = item[0]; + String yspHost = URLHandleUtils.getFirstURLPath(item[1]); + String refererHost = item[2]; + int[] resultIndex = itemEvaluate(cIp, yspHost, refererHost, miningService); + + yspCmt += 1; + if (resultIndex[0] == -1) continue; + validateYspCmt += 1; + validateYspSum += resultIndex[6]; + accumulateResult(evaluateMap, "statistic", resultIndex[1]); + accumulateResult(evaluateMap, "rule1", resultIndex[2]); + accumulateResult(evaluateMap, "sta_rule1", resultIndex[3]); + accumulateResult(evaluateMap, "rule2", resultIndex[4]); + accumulateResult(evaluateMap, "sta_rule1_rule2", resultIndex[5]); + + testCnt += 1; + if (testCnt % 5 == 0) { + logger.warn(String.format("目前处理第%d条", testCnt)); + } + } + printEvaluate(yspCmt, validateYspCmt, validateYspSum, evaluateMap); + } catch (IOException e) { + e.printStackTrace(); + } + } + + /** + * 评估三种方式: + * 统计的顺序 + * prefixSpan的一项集顺序 + * prefixSpan重排序后的顺序 + * + * 如果要用redis去避免重复计算的话,需要同时存几种不同的方案 + * @return 返回值为长度为4的数组,[是否加入训练(0/1),统计,规则1,统计+规则1,规则2,统计+规则1+规则2] + */ + public int[] itemEvaluate(String clientIP, String yspHost, String refererHost, MiningService miningService) { + Jedis jedis = JedisPoolUtils.getJedis(); + if (jedis != null && jedis.exists(yspHost)) { + String statisticCandidate = jedis.hget(yspHost, "statistic"); + String rule1Candidate = jedis.hget(yspHost, "rule1"); + String staRule1Candidate = jedis.hget(yspHost, "sta_rule1"); + String rule2Candidate = jedis.hget(yspHost, "rule2"); + String prefixCandidate = jedis.hget(yspHost, "sta_rule1_rule2"); + if (prefixCandidate == null || statisticCandidate == null || rule1Candidate == null || staRule1Candidate == null || rule2Candidate == null) { + // 此时计算 + int[] resultIndex = mining2Evaluate(yspHost, refererHost, miningService, jedis); + JedisPoolUtils.returnResource(jedis); + return resultIndex; + } + else { + JedisPoolUtils.returnResource(jedis); + logger.warn(String.format("%s在redis缓存中存在,无需重复计算", yspHost)); + // 此时从redisCandidate中判断 + return new int[]{ + 1, + judgeIndex(statisticCandidate, refererHost), + judgeIndex(rule1Candidate, refererHost), + judgeIndex(staRule1Candidate, refererHost), + judgeIndex(rule2Candidate, refererHost), + judgeIndex(prefixCandidate, refererHost), + statisticCandidate.split(", ").length + }; + } + } + else { + if (!miningService.isMore10(yspHost)) { + logger.warn(String.format("%s数据过少,不需要进行挖掘", yspHost)); + return new int[]{-1, -1, -1, -1, -1, -1, -1}; + } + int[] resultIndex = mining2Evaluate(yspHost, refererHost, miningService, jedis); + JedisPoolUtils.returnResource(jedis); + return resultIndex; + } + } + + private int[] mining2Evaluate(String yspHost, String refererHost, MiningService miningService, Jedis jedis) { + ArrayList<Row> data = miningService.buildInput(yspHost); + logger.warn("数据构造完毕,开始序列挖掘"); + Dataset<Row> sequence = miningService.relateHostMiningTask(data); + logger.warn("mining结束,写回Redis"); + List<String> candidateList = miningService.miningCandidate(sequence); + if (jedis != null) { + jedis.hset(yspHost, "write_time", String.valueOf(System.currentTimeMillis()/1000L)); + jedis.hset(yspHost, "statistic", candidateList.get(0)); + jedis.hset(yspHost, "rule1", candidateList.get(1)); + jedis.hset(yspHost, "sta_rule1", candidateList.get(2)); + jedis.hset(yspHost, "rule2", candidateList.get(3)); + jedis.hset(yspHost, "sta_rule1_rule2", candidateList.get(4)); + } + return new int[]{ + 1, + judgeIndex(candidateList.get(0), refererHost), + judgeIndex(candidateList.get(1), refererHost), + judgeIndex(candidateList.get(2), refererHost), + judgeIndex(candidateList.get(3), refererHost), + judgeIndex(candidateList.get(4), refererHost), + candidateList.get(0).split(", ").length + }; + } + + /** + * TODO:这里判断容易出问题,需要验证一下 + */ + private int judgeIndex(String candidate, String refererHost) { + String[] candidateArray = candidate.substring(1, candidate.length()-1).split(", "); + for (int i = 0; i < candidateArray.length; i++) { + if (refererHost.equals(candidateArray[i])) + return i + 1; + } + return -1; + } + + /** + * 数组为:[出现次数,不出现的次数,每个方案出现的index之和,每个方案第1次出现的次数,每个方案在前5次出现的次数,每个方案在前10次出现的次数] + */ + private void accumulateResult(Map<String, Integer[]> evaluateMap, String key, Integer idx) { + if (!evaluateMap.containsKey(key)) { + evaluateMap.put(key, new Integer[]{0,0,0,0,0,0}); + } + Integer[] accResultIdx = evaluateMap.get(key); + if (idx == -1) { + // 因为是引用,所以直接改变内部的值就可以,不需要再put回去 + accResultIdx[1] += 1; + return; + } + accResultIdx[0] += 1; + accResultIdx[2] += idx; + if (idx == 1) { + accResultIdx[3] += 1; + accResultIdx[4] += 1; + accResultIdx[5] += 1; + } + else if (idx >= 2 && idx <= 5) { + accResultIdx[4] += 1; + accResultIdx[5] += 1; + } + else if (idx > 5 && idx <= 10) { + accResultIdx[5] += 1; + } + } + + private void printEvaluate(int yspCmt, int validateYspCmt, int validateYspSum, Map<String, Integer[]> evaluateMap) { + System.out.println(String.format("在一定时间窗口且存在referer的YSP总数为%s,其中符合挖掘条件的个数为%s,候选集平均长度为%s", + yspCmt, validateYspCmt, validateYspSum / (float) validateYspCmt)); + System.out.format("%18s%18s%18s%18s%18s%18s%18s%n", "Sorting rules", "Occurrences", "No-occurrence", "Index avg", "Prop pos=1", "Prop pos<5", "Prop pos<10"); + for (Map.Entry<String, Integer[]> entry : evaluateMap.entrySet()) { + String key = entry.getKey(); + Integer[] value = entry.getValue(); + System.out.format("%18s%18s%18s%18s%18s%18s%18s%n", + key, value[0], value[1], + value[2] / (float) validateYspCmt, + value[3] / (float) validateYspCmt, + value[4] / (float) validateYspCmt, + value[5] / (float) validateYspCmt); + } + } + + @Test + public void grammarTest() { + HashMap<String, Integer[]> map = new HashMap<>(); + Integer[] testA = new Integer[]{0,0,0}; + map.put("testa", testA); + Integer[] arraya = map.get("testa"); + arraya[1] += 1; + for (Integer each: map.get("testa")) { + System.out.println(each); + } + System.out.format("%8s%8d%8s%n", "string1", 1, "string2"); + System.out.format("%12s%12s%12s%12s%12s%12s%12s%n", "方式", "出现次数", "不出现次数", "平均Index", "第1次出现占比", "前5次出现占比", "前10次出现占比"); + System.out.format("%12s%12d%12d%12f%12f%12f%12f%n", + "key", 0, 1, 1.1, 1.2, 1.3, 1.4); + File f = new File(this.getClass().getResource("").getPath()); + System.out.println(f); + } + + public static void main(String[] args) { + EffectEvaluation effectEvaluation = new EffectEvaluation(); + effectEvaluation.evaluateFromFile(); + } +} diff --git a/src/main/java/cn/ac/iie/mining/MiningModule.java b/src/main/java/cn/ac/iie/mining/MiningModule.java new file mode 100644 index 0000000..1581eb4 --- /dev/null +++ b/src/main/java/cn/ac/iie/mining/MiningModule.java @@ -0,0 +1,8 @@ +package cn.ac.iie.mining; + +public class MiningModule { + public static void main(String[] args) { + MiningService miningService = new MiningService(); + miningService.consumeKafka(); + } +} diff --git a/src/main/java/cn/ac/iie/mining/MiningService.java b/src/main/java/cn/ac/iie/mining/MiningService.java index a64b1d7..483d90d 100644 --- a/src/main/java/cn/ac/iie/mining/MiningService.java +++ b/src/main/java/cn/ac/iie/mining/MiningService.java @@ -15,14 +15,18 @@ import org.apache.kafka.clients.consumer.ConsumerConfig; import org.apache.kafka.clients.consumer.ConsumerRecord; import org.apache.kafka.clients.consumer.ConsumerRecords; import org.apache.kafka.clients.consumer.KafkaConsumer; +import org.apache.spark.SparkConf; +import org.apache.spark.SparkContext; import org.apache.spark.ml.fpm.PrefixSpan; import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.RowFactory; import org.apache.spark.sql.SparkSession; import org.apache.spark.sql.types.*; -import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import redis.clients.jedis.Jedis; +import scala.collection.mutable.WrappedArray; import java.time.Duration; import java.util.*; @@ -33,10 +37,13 @@ import java.util.concurrent.atomic.AtomicBoolean; * 代码逻辑: * 从kafka从读取数据,查看其host是否在redis中存在,如果存在则表示曾进行过序列挖掘,再检查这个hodt对应的记录是否失效, * 如果这个host在redis不存在或者已失效,则查ClickHouse看其历史数据是否大于10,如果大于则进行序列挖掘,并将结果写到redis中 + * + * 当前问题:CK表的 AV_event 和 connection_record_log_local 中记录不一致,一个有的另一个可能没有,两个都有的时间可能对不上 */ public class MiningService { public static final String groupId="test"; public static final AtomicBoolean isRunning=new AtomicBoolean(true); + private static Logger logger = LoggerFactory.getLogger(MiningService.class); private static Properties initConfig() { Properties properties=new Properties(); @@ -46,10 +53,11 @@ public class MiningService { properties.put(ConsumerConfig.GROUP_ID_CONFIG, groupId); // max.poll.records设置的条数要在一定的时间间隔处理完 - properties.put("max.poll.records", 50); + properties.put("max.poll.records", 10); // 自动提交 properties.put("enable.auto.commit", "false"); - properties.put("auto.offset.reset", "earliest"); + // 测试的时候设置为从头开始 + //properties.put("auto.offset.reset", "earliest"); return properties; } @@ -58,22 +66,42 @@ public class MiningService { private static Jedis jedis; private static AVDataListMapper avListMapper; + private static SparkConf conf = new SparkConf() + .setAppName("PrefixSpanHosts"+System.currentTimeMillis()) + .setMaster(Configurations.getStringProperty(0, "Spark.master")) + // 指定本机IP为driver + //.setIfMissing("spark.driver.host", "192.168.36.69") + //.setJars(new String[]{"out/artifacts/VideoPortalDetection_jar/VideoPortalDetection.jar"}) + .set("spark.executor.extraJavaOptions", "-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./dumpex") + .set("spark.driver.extraJavaOptions", "-XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./dumpdr") + .set("spark.driver.memory", "10g") + .set("spark.executor.memory", "2g") + ; + + private static SparkSession spark = SparkSession + .builder() + //.appName("PrefixSpanHosts") + //.master("local[*]") + //.master("spark://hezhengjiedeMacBook-Pro.local:7077") + //.master(Configurations.getStringProperty(0, "Spark.master")) + // 这里还需要setJars + .config(conf) + .getOrCreate(); + + private static SparkContext sc = spark.sparkContext(); + static { sqlSession = SqlSessionFactoryUtils.getSqlSessionFactory().openSession(); avListMapper = sqlSession.getMapper(AVDataListMapper.class); + if (jedis == null) { JedisPoolUtils.getJedisPoolInstance(); jedis = JedisPoolUtils.getJedis(); } - } - private static SparkSession spark = SparkSession - .builder() - .appName("PrefixSpanHosts") - .master(Configurations.getStringProperty(0, "Spark.master")) - .getOrCreate(); + sc.setLogLevel("WARN"); + } - @Test public void consumeKafka() { Properties properties=initConfig(); KafkaConsumer<String,String> consumer=new KafkaConsumer<>(properties); @@ -86,85 +114,130 @@ public class MiningService { String prevHost = ""; // 拉取消息并消费 + finalTag: while(isRunning.get()){ ConsumerRecords<String,String> records=consumer.poll(Duration.ofMillis(1000)); for (ConsumerRecord<String,String> record:records){ JsonNode jsonNode = objectMapper.readTree(record.value()); // 查找有数据的部分 - if (jsonNode.get("dir").asInt() == 2) + JsonNode urlNode = jsonNode.get("url"); + if (jsonNode.get("dir").asInt() == 2 || urlNode == null) continue; - String urlPath = URLHandleUtils.getFirstURLPath(jsonNode.get("url").asText()); + String urlPath = URLHandleUtils.getFirstURLPath(urlNode.asText()); if (prevHost.equals(urlPath)) continue; prevHost = urlPath; // 交给查询模块进行处理 - System.out.println(urlPath); + logger.warn(String.format("当前YSP为%s", urlPath)); + miningProcess(urlPath); + //break finalTag; } - consumer.commitSync(); + //consumer.commitSync(); + //break; } } catch (Exception e) { e.printStackTrace(); }finally { consumer.close(); sqlSession.close(); - JedisPoolUtils.returnResource(jedis); + JedisPoolUtils.releaseResource(jedis); } } + public void miningProcess(String urlHost) { + if (!judgeKeyCache(urlHost)) { + logger.warn("不需要进行序列挖掘"); + } + ArrayList<Row> data = buildInput(urlHost); + logger.warn("数据构造完毕,开始序列挖掘"); + // 调用spark模块 + Dataset<Row> sequence = relateHostMiningTask(data); + + logger.warn("mining结束,写回Redis"); + // 写回redis,如果redis中存在过期记录则覆盖 + List<String> candidateList = miningCandidate(sequence); + + jedis.hset(urlHost, "write_time", String.valueOf(System.currentTimeMillis()/1000L)); + Integer volume = Configurations.getIntProperty(0, "volume"); + if (volume != null && volume > 0) { + String lastOptimize = candidateList.get(candidateList.size()-1); + List<String> lastOptimizeList = Arrays.asList(lastOptimize.substring(1, lastOptimize.length()-1).split(", ")); + if (lastOptimizeList.size() > volume) { + String candidate = lastOptimizeList.subList(0 ,volume).toString(); + jedis.hset(urlHost, "candidate", candidate); + } + else jedis.hset(urlHost, "candidate", candidateList.get(candidateList.size()-1)); + } + else jedis.hset(urlHost, "candidate", candidateList.get(candidateList.size()-1)); + } + /** * 查询redis中这条key是否在3天内已经进行过序列挖掘 * 判断redis(入口表)中是否存在记录,是否过期 * 注意这里如果在序列表中加了记录的过期删除的话需要修改代码哟~ * @param urlPath 以 / 分割的一级地址 */ - public void judgeKey(String urlPath) { + public boolean judgeKeyCache(String urlPath) { if (jedis.exists(urlPath)) { // 存在的话再判断一下时间过期没有 long writeTime = Long.parseLong(jedis.hget(urlPath, "write_time")); long nowTime = System.currentTimeMillis()/1000L; - long earlyMorning3 = nowTime - (nowTime + 8 * 3600) % 86400 - 86400 * 2; - if (earlyMorning3 > writeTime && isMore10(urlPath)) { + // long earlyMorning3 = nowTime - (nowTime + 8 * 3600) % 86400 - 86400 * 2; + long expireTime = nowTime - Configurations.getIntProperty(0, "ExpirationTime") * 24 * 60 * 60; + if (expireTime > writeTime || jedis.hget(urlPath, "candidate").length() <= 2) { // 序列挖掘 - sequenceMining(urlPath); + logger.warn(String.format("%s不存在且过去日志符合条件,进行序列挖掘", urlPath)); + return true; } + else logger.warn(String.format("%s在Redis中存在并且尚未过期", urlPath)); } else { // 序列挖掘 if (isMore10(urlPath)) { - sequenceMining(urlPath); + logger.warn(String.format("%s不存在且过去日志符合条件,进行序列挖掘", urlPath)); + return true; + } + else { + logger.error(String.format("%s在过去日志中出现次数过少", urlPath)); } } + return false; } /** - * 查询ClickHouse看是否满足序列挖掘条件 + * 查询ClickHouse看是否满足序列挖掘条件,单独抽出这个类的原因是避免用like去查询 * @param urlPath 从 / 分割的一级地址 * @return 是否可以进行序列挖掘 */ public boolean isMore10(String urlPath) { String likeUrl = '%' + urlPath + '%'; - // 这个时间不是准确的30天前喔 - long effectiveTime = System.currentTimeMillis()/1000L - 3000000; + // long effectiveTime = System.currentTimeMillis()/1000L - 3000000; + long effectiveTime = System.currentTimeMillis()/1000L - + Configurations.getIntProperty(0, "historyTrafficInterval") * 24 * 60 * 60; int cnt = avListMapper.cumulativeData(likeUrl, effectiveTime); - return cnt >= 10; + return cnt >= Configurations.getIntProperty(0, "leastHistoryNum"); } /** - * 先查ck找到每一个相似的host的client ip和server ip,时间戳 - * 每一个host找其时间窗口,构造一行RowFactory + * 先查ck的av表找到每一个相似的host的client ip和server ip,时间戳 + * 通过av标的每一条记录查询总流量表找到时间窗口 + * 每一个host找其时间窗口后,构造一行RowFactory * 将构造好的data交给Spark进行序列挖掘 * 返回结果处理后写入redis * + * TODO:异常处理,当aVlogs太少而trafficLogList太长的时候考虑不加入训练 + * * redis格式: * key: urlPath field: write_time, candidate 皆为字符型 * candidate(String): [host1, host2, host3] */ - public void sequenceMining(String urlPath) { + public ArrayList<Row> buildInput(String urlPath) { // 先查ck找到每一个相似的host String likeUrl = '%' + urlPath + '%'; List<AVlog> aVlogs = avListMapper.getHistoryHost(likeUrl); + logger.warn(String.format("%s过去曾出现过%d次", urlPath, aVlogs.size())); ArrayList<Row> data = new ArrayList<>(); @@ -172,17 +245,13 @@ public class MiningService { for (AVlog eachLog: aVlogs) { List<TrafficLog> trafficLogList = avListMapper.getRelationListWithHost(eachLog.getFound_time(), eachLog.getClient_ip(), - Configurations.getIntProperty(0, "interval")); - data.add(RowFactory.create(constructRow(trafficLogList))); + Configurations.getIntProperty(0, "intervalLeft"), + Configurations.getIntProperty(0, "intervalRight")); + // System.out.println(trafficLogList.toString()); + if (trafficLogList.size() > 0) + data.add(RowFactory.create(constructRow(trafficLogList))); } - - // 调用spark模块 - Dataset<Row> sequence = relateHostMiningTask(spark, data); - - // 写回redis - List<String> candidateList = buildCandidate(sequence); - jedis.hset(urlPath, "write_time", String.valueOf(System.currentTimeMillis()/1000L)); - long returnStatus = jedis.hset(urlPath, "candidate", candidateList.toString()); + return data; } /** @@ -191,7 +260,14 @@ public class MiningService { private List<List<String>> constructRow(List<TrafficLog> trafficLogList) { List<List<String>> row = new ArrayList<>(); for (TrafficLog trafficLog: trafficLogList) { - row.add(Arrays.asList(trafficLog.getHttp_host())); + String oneItemHTTPHost = trafficLog.getHttp_host(); + String oneItemSNI = trafficLog.getSsl_sni(); + // logger.warn("HTTP: " + oneItemHTTPHost); + // logger.warn("SSL: " + oneItemSNI); + if (oneItemSNI != null && oneItemSNI.length() > 0) + row.add(Arrays.asList(oneItemSNI)); + else if (oneItemHTTPHost != null && oneItemHTTPHost.length() > 0) + row.add(Arrays.asList(oneItemHTTPHost)); } return row; } @@ -199,18 +275,21 @@ public class MiningService { /** * 序列挖掘方法 */ - public Dataset<Row> relateHostMiningTask(SparkSession spark, List<Row> data) { + //public Dataset<Row> relateHostMiningTask(SparkSession spark, List<Row> data) { + public Dataset<Row> relateHostMiningTask(List<Row> data) { StructType schema = new StructType(new StructField[]{ new StructField( "sequence", new ArrayType(new ArrayType(DataTypes.StringType, true), true), false, Metadata.empty()) }); Dataset<Row> sequenceDF = spark.createDataFrame(data, schema); - - PrefixSpan prefixSpan = new PrefixSpan().setMinSupport(0.5).setMaxPatternLength(5); + sequenceDF.show(20, true); + //sequenceDF.show(50, false); + PrefixSpan prefixSpan = new PrefixSpan().setMinSupport(Configurations.getDoubleProperty(0, "prefixConfidence")).setMaxPatternLength(5); // Finding frequent sequential patterns Dataset<Row> sequence = prefixSpan.findFrequentSequentialPatterns(sequenceDF); - sequence.show(); + //sequence.show(10, false); + sequence.show(100,false); return sequence; } @@ -218,15 +297,100 @@ public class MiningService { * 将spark序列挖掘返回的结果进行处理,返回候选集 * 如果有需要重排序的也在这一步进行处理 * 总感觉Spark用Iterator的处理很慢,不如lambda + * + * TODO:这里项集的域名的地址没有经过处理 + * 这里有一定概率内存溢出,目前暂不清楚如何增加一个task的最大内存 */ - public List<String> buildCandidate(Dataset<Row> sequence) { - List<String> oneItemList = new ArrayList<>(); + public List<String> miningCandidate(Dataset<Row> sequence) { + List<String> candidateList = new ArrayList<>(); + HashMap<String, Integer> restFirstMap = new HashMap<>(); + HashMap<String, Integer> restMap = new HashMap<>(); + + String candidateItem; + HashMap<String, Long> hashMap = new HashMap<>(); + // TODO:这里会导致堆内存不足的问题 Uncaught exception in thread task-result-getter for(Iterator<Row> iter = sequence.toLocalIterator(); iter.hasNext();) { Row each = iter.next(); - if (each.size() == 1) - oneItemList.add(each.getString(0)); + if (each.size() == 2) { + try { + WrappedArray rawSequence = (WrappedArray)each.get(0); + WrappedArray firstItem = (WrappedArray)rawSequence.apply(0); + //if (cmt >= volume) break; + //cmt++; + if (rawSequence.size() == 1) { + candidateItem = (String)firstItem.apply(0); + Long freq = (Long) each.get(1); + if (hashMap.containsKey(candidateItem)) { + if (hashMap.get(candidateItem) < freq) + hashMap.put(candidateItem, freq); + } + else { + candidateList.add(candidateItem); + hashMap.put(candidateItem, freq); + } + } + else { + candidateItem = (String)((WrappedArray)rawSequence.apply(0)).apply(0); + restFirstMap.put(candidateItem, restFirstMap.getOrDefault(candidateItem, 0) + 1); + for (int i = 1; i < rawSequence.size(); i++) { + candidateItem = (String)((WrappedArray)rawSequence.apply(i)).apply(0); + restMap.put(candidateItem, restMap.getOrDefault(candidateItem, 0) + 1); + } + } + } + catch (Exception e) { + e.printStackTrace(); + } + } else break; } - return oneItemList; + candidateList.sort((o1, o2) -> (int) (hashMap.get(o2) - hashMap.get(o1))); + List<String> optimizedOrders = new ArrayList<>(); + // 根据freq排,但是感觉freq并不是统计的结果呀,就很奇怪 + optimizedOrders.add(candidateList.toString()); + logger.warn("计算结果:" + candidateList.toString()); + + prefixReSort(optimizedOrders, candidateList, restFirstMap, restMap); + logger.warn("优化后的结果:" + optimizedOrders.get(optimizedOrders.size()-1)); + return optimizedOrders; + } + + /** + * 直接用一项集的话,结果和统计是没差的,其实入口更倾向于出现在多项集的首部,而不是一项集 + * 规则1:入口更倾向于出现在多项集的首部 -> 统计candidate出现在多项集首部的次数 + * 规则2:入口更不倾向于出现在无序集中 -> 统计candidate出现在不是首部的比例(这一点目前来看不一定是好的,因为很多大站很可能就在后面会出现呀~) + * TODO: 这里排序的实现需要改进,用排序序列的方法直接忽略了数值的关系,损失了部分特征,后续可以考虑用learning to rank的方法 + * + * @param candidateList 一项集 + * @param restMap 多项集 + * 几种不同的优化后的候选集顺序[统计, 规则1,统计+规则1,规则2,统计+规则1+规则2] + * 还有一个总体统计的,但是比较占内存,这里没有用啦~ + * 忽然觉得用prefix items为多的结果,是否有点不太好,因为3项集多的2项集也会多 + */ + public void prefixReSort(List<String> orders, List<String> candidateList, Map<String, Integer> restFirstMap, Map<String, Integer> restMap) { + int candidateListSize = candidateList.size(); + HashMap<String, Integer> ruleValueMap = new HashMap<>(); + for (int i = 0; i < candidateListSize; i++) { + ruleValueMap.put(candidateList.get(i), i); + } + + // default设置为0,使在首部出现的往前面移动,其中restFirstMap是在首部出现的次数 + candidateList.sort((o1, o2) -> (restFirstMap.getOrDefault(o2, 0) - restFirstMap.getOrDefault(o1, 0))); + resort(candidateList, orders, candidateListSize, ruleValueMap); + + // 尤其是下面这里,不是很合适 + // default设置为3,使经常在后面出现的排序往后移动,其中restMap是在非首部出现的次数 + candidateList.sort(Comparator.comparingInt(o -> restMap.getOrDefault(o, 3))); + resort(candidateList, orders, candidateListSize, ruleValueMap); + } + + private void resort(List<String> candidateList, List<String> orders, int candidateListSize, HashMap<String, Integer> ruleValueMap) { + orders.add(candidateList.toString()); + for (int i = 0; i < candidateListSize; i++) { + String item = candidateList.get(i); + ruleValueMap.put(item, ruleValueMap.get(item) + i); + } + candidateList.sort((o1, o2) -> (ruleValueMap.get(o1) - ruleValueMap.get(o2))); + orders.add(candidateList.toString()); } } diff --git a/src/main/java/cn/ac/iie/mining/prefixSpark.java b/src/main/java/cn/ac/iie/mining/prefixSpark.java index a77092d..330b6fd 100644 --- a/src/main/java/cn/ac/iie/mining/prefixSpark.java +++ b/src/main/java/cn/ac/iie/mining/prefixSpark.java @@ -1,9 +1,6 @@ package cn.ac.iie.mining; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Iterator; -import java.util.List; +import java.util.*; import org.apache.spark.SparkContext; import org.apache.spark.api.java.function.MapFunction; @@ -18,8 +15,9 @@ public class prefixSpark { SparkSession spark = SparkSession .builder() .appName("PrefixTest") - //.master("local[4]") - .master("spark://localhost:7077") + .master("local[4]") + //.master("spark://localhost:7077") + //.master("spark://hezhengjiedeMacBook-Pro.local:7077") .getOrCreate(); // $example on$ @@ -111,4 +109,18 @@ public class prefixSpark { }); System.out.println("oneItem: " + oneItem.toString()); } + + @Test + public void testGrammer() { + HashMap<String ,Integer> hashMap = new HashMap<>(); + hashMap.put("a", 11); + hashMap.put("b", 10); + hashMap.put("c", 12); + List<String> list = new ArrayList<>(); + list.add("a"); + list.add("b"); + list.add("c"); + list.sort((o1, o2) -> hashMap.get(o2) - hashMap.get(o1)); + System.out.println(list.toString()); + } } diff --git a/src/main/java/cn/ac/iie/pojo/AVlog.java b/src/main/java/cn/ac/iie/pojo/AVlog.java index 2a5165b..400c9e0 100644 --- a/src/main/java/cn/ac/iie/pojo/AVlog.java +++ b/src/main/java/cn/ac/iie/pojo/AVlog.java @@ -43,4 +43,7 @@ public class AVlog { @Setter private String user_agent; + @Getter + @Setter + private String referer_host; } diff --git a/src/main/resources/redis.properties b/src/main/resources/redis.properties index 89070ed..77d1dde 100644 --- a/src/main/resources/redis.properties +++ b/src/main/resources/redis.properties @@ -1,2 +1,2 @@ -redisHost=192.168.10.28 +redisHost=192.168.10.9 redisPort=6379
\ No newline at end of file diff --git a/src/main/resources/testSet.txt b/src/main/resources/testSet.txt new file mode 100644 index 0000000..a978018 --- /dev/null +++ b/src/main/resources/testSet.txt @@ -0,0 +1,1414 @@ +192.168.11.223 mp4.studyez.com/2014 www.studyez.com 1628325839 1628325828 11
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628267245 1628267239 6
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628267251 1628267239 12
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689527 1631689520 7
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689530 1631689520 10
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689534 1631689520 14
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689570 1631689520 50
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689570 1631689520 50
+192.168.11.228 thepagesofavalon.com/lady_in_red.mid thepagesofavalon.com 1631691247 1631691243 4
+192.168.11.202 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1631692086 1631692083 3
+192.168.11.202 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1631692114 1631692084 30
+192.168.11.202 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1631692461 1631692460 1
+192.168.11.202 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1631692461 1631692460 1
+192.168.11.85 cdn-img.ludashi.com/web www.ludashi.com 1631696639 1631696628 11
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697791 1631697783 8
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697797 1631697783 14
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697800 1631697783 17
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697812 1631697783 29
+192.168.11.109 ysf.nosdn.127.net/webapi www.shipinzhuanhuan.cn 1631697843 1631697834 9
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698052 1631698048 4
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698098 1631698048 50
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698132 1631698095 37
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698172 1631698181 -9
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698187 1631698181 6
+192.168.11.55 www.gov.cn/govweb www.gov.cn 1634447979 1634447924 55
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204137 1627204131 6
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204132 1627204131 1
+192.168.11.112 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1627204132 1627204131 1
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204386 1627204382 4
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204623 1627204617 6
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627205409 1627205406 3
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627205668 1627205667 1
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627205793 1627205793 0
+192.168.11.59 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1627209821 1627209813 8
+192.168.11.112 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1627218785 1627218783 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627219467 1627219466 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627219571 1627219570 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627219774 1627219771 3
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627220010 1627219975 35
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627220189 1627220183 6
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627220447 1627220444 3
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627220665 1627220663 2
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627221264 1627221269 -5
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627221503 1627221451 52
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627222357 1627222325 32
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222493 1627222491 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222555 1627222554 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222742 1627222741 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222941 1627222940 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223086 1627223084 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223353 1627223351 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223436 1627223433 3
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223838 1627223832 6
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627224108 1627224108 0
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624035603 1624035596 7
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624040995 1624040993 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624046632 1624046627 5
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624046632 1624046627 5
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624046632 1624046627 5
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624051796 1624051793 3
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624062595 1624062593 2
+192.168.11.216 200.200.200.200:8081/IXC424559b98662bac2182a3c7b6c545362 www.adgoo.cn 1624084199 1624084193 6
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625017611 1625017594 17
+192.168.11.173 eversec.com.cn/When_the_Game_Stands_Tall.mp3 eversec.com.cn 1625036752 1625036703 49
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037188 1625037154 34
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037188 1625037154 34
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037188 1625037154 34
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037351 1625037307 44
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037351 1625037307 44
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037351 1625037307 44
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625042548 1625042532 16
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625042548 1625042532 16
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625043012 1625043010 2
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634611843 1634611823 20
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634611849 1634611823 26
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634612114 1634612114 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634612358 1634612358 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634613151 1634613151 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634613401 1634613401 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634613621 1634613621 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634614241 1634614241 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634614733 1634614732 1
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634614992 1634614992 0
+192.168.11.223 ysf.nosdn.127.net/webapi www.dailiantong.com 1631751940 1631751937 3
+192.168.11.187 106.120.158.148/amobile.music.tc.qq.com 106.120.158.148 1631763703 1631763651 52
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764609 1631764603 6
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764618 1631764603 15
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764621 1631764603 18
+192.168.10.197 159.226.95.84/register 159.226.95.84 1631764630 1631764603 27
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764652 1631764603 49
+192.168.11.187 106.120.158.148/amobile.music.tc.qq.com 106.120.158.148 1631766965 1631766950 15
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631771943 1631771940 3
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631771958 1631771940 18
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631771964 1631771940 24
+192.168.11.163 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1631773856 1631773851 5
+192.168.11.152 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1631775359 1631775343 16
+192.168.11.152 182.254.52.25/amobile.music.tc.qq.com 182.254.52.25 1631775930 1631775928 2
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001OWRNc4RsDep.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=EA234235F7D68C31BE496863B31A307F9705754A3556E0CD4819B79DCAF77CCC2537939975A124CA55457DBE002C4C0C58FCB977E97A0617&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776772 1631776737 35
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003DLb2k3vlEGW.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=CD2BA7771A16BE411BAD6D9BCCDB4D3B410D63E14EAF0E5B1D0A1CEC4138F6995757C345FE00DF252BB0AFFB79ED5CBEBB3791D1ABAA3949&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776778 1631776737 41
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004KCeCQ4LFjir.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=4F4B89FD208C6D6CD3D5C294FE8AEE499A88194ED84B3B8900830AD85654F45CA56453A90DC0FB833A769C1E354820A071BA0AF2277ABF67&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776858 1631776857 1
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001GoYo41ZcXaD.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=ACA126F07C7221D25F55382D9051292F480BE605B90BB91C3CD247B214FEE12A161306744E88F179CA7F43A076C048F461DBE9DCB53D5BD3&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776864 1631776857 7
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004YOwMP0Rmq9e.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=81FE6B9E2A36FE61D887947AABE1ED8B722602FD24899072D6ACC557874006F36042516B37649310C4F7BC8753B5F0B19A244BBEB68FD3D4&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776932 1631776918 14
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020044h10M4QtRPV.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=FFABAEEFB381A1A947367D0CA0795DF40B083C38390BAB4D97796F9211E7A181A5E2FD97BA41FEAFC9442F012D831D8C7ED37D3024CC4675&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777008 1631776978 30
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000pyrvu00PZig.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=7D1542CF6E7D9AC7D0C7665DC4741A44EC9D28B7C2AC5524027DB8F4BA6094C7EECB8EF37C3557C169097B09BDA909BAD3054D1CEB4A7686&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777113 1631777068 45
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004UDwIk1KrnxM.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=8016258A5F17C7F1A2495A287E6E48EAA9510F19C96D4583992CC59F2E67B7155B0495356EA0B2A5344CCC25B9E5047282BBDE7B946B7E05&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777180 1631777128 52
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02002oV3xt41zB5a.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=0F2AFF80754DD4D03A1FE55D374CBED191644C03D57405011EFBB1EB4ED1FF92E2791CF4639F83A34D6F91E5405ABBD079A202920E88DFD6&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777276 1631777248 28
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000N43WD2t03Cq.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=DF9926DDDCE5B28E9DF323D796E4B23CEEE1539741EFA3B0F0CA66A956F54B9F862CDF5700DCC61F17B1A761F241A0C52C78B42E3A62B7F2&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777322 1631777308 14
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003Hnkvd13lWq9.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=CD97CB7752959725D50017D81D3FC2FEF25B94FE2FC3931B7BF49E5A75A7D87032D4346124A51F65CE4497B7A2E006A1756B1DA826C80D16&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777389 1631777368 21
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004Bxr9m3ArSk7.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=7A3914A71BAE6743420E3BE9BE20FAF6702586216A121FA3E89035ABCB9AEF4DFB7D87927F31B66F67C546FB39624175E6CA57584E9E03A3&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777448 1631777429 19
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003oESxN1SWUBr.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=28262723DC3834E5D0D7E9CC817CC6A01576DD0BEA84037979107B5F000B2C98CA989CA17E5C93255EC896961AB4889F21A5F6E65F276F01&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777454 1631777429 25
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001749MW2bEKvY.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=DD7340DA91B5E0A5638441E179EB5D702FE62A581DBA243436F893137E8B41732A2E0CE970E7CDE13B5A74C3F4E8B75AB1DCD30A3CEE60F5&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777503 1631777488 15
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020003YmTa3rbPXP.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=4870F5555AC6D4D3D231A18A8F20F9E1E488DAE6AEA33DAFC2838C7538A8FC66C0741F61205B012DEAB1DBCA259B51540EAEC67C1D1634F0&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777570 1631777548 22
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000lz8lU32wxTg.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=904A218E9E722818C30B53C4893D1F0C3D029DA882A62D2CE65B9F442EE4B7356FB17A8B6B7DE3349B77C2C50D8A52DAA3AA7C14AAE99858&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777669 1631777668 1
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000q52oF4FKK4G.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=059DB5E8CE5174A959C1E51D570EF1AF52A51716B2AD4403B8A37543B4430E60934EB31A3738332A8E7C52A5D4A617BCC65E2919B7E29F48&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777736 1631777728 8
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001ABDtK3heAM3.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=30E3704EBD984F2A5B8D5E48AD4B06D6E35521F8DF5B81CA3B7F3BB22E1531C536F3396179EE1256DB7C06FFFF0020B62B5F580B14D346F4&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777841 1631777788 53
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003qafiC2WCC8Y.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=1464FFA8D295292643F5D4ED65E2E6DEDE3EB702D9D6A01D93AC32160514B759304EE89E66A0BF645428A9804C225D0C10C4B5078956F167&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777924 1631777908 16
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004PJ2g54Hlmvo.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=EB425641A9AC6FE17A5CB87C3BF38B9682BFFF6AC63FCAE1A1E1F45D4A53D242EC3E1B87BE5CF7F602352B9A237CAFC98ACAE7AC58BA6EC6&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778022 1631777968 54
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001BNiB60anlL2.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=F3504AD61358F75F5F008248189BD91A37A1372B252E69150F7496DEE3A2F0C7B6EA7774ED43B87649303DABB74897A93EC2D549258A295C&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778090 1631778088 2
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003ZVMpo0CpzBy.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=103506FBD34D2B6B11C17CACD9BCD0989E537B94D60955D21068ECFD241891317A84A10A2808403641D3A9958009C778CF959CC40C7FE0C6&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778166 1631778149 17
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020000TO8p4HH2x0.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=0EE5751FD92AC80B7DECD6E7F82C94BC6137A443A4D94907E5D5723AD52E9AD34132ADFA8E946EB0E7EC80B9886AD7A1BBF861A853305CA4&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778249 1631778209 40
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003uht0Q1uMX6U.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=096E6216A1C29FC28AA68EC89BD349A6748447F16E9AA3DBB0CA16456209ABF6A0C362D4BAC50B8CC2EE8673D755A8A4DD12157F7E087AAF&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778332 1631778329 3
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020029lAG00hCGha.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=FF130820AF90707E459D97D53A1C11E59B8B60E9B344E0B53745181208DCCDEF9392057F5C9B5F2C1A1802D7544AF8FF6069243CD5A81002&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778394 1631778391 3
+192.168.11.163 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1631779211 1631779169 42
+192.168.11.55 ws6.stream.qqmusic.qq.com/F000001pHZUr4BYDY8.flac?guid=5E2D2A823D8B4ECCAEBFDF629F66CD95&vkey=612CF2B076FEDA53542DAF37739FC22FBCB30EDB121F549B8694CEAE937733AD8501C889EC758781138BAF8BCC7E0042930A761C9D419F74&uin=547151716&fromtag=118 ws6.stream.qqmusic.qq.com 1631791577 1631791565 12
+192.168.11.55 ws6.stream.qqmusic.qq.com/F0000025BTQa1QyYYA.flac?guid=5E2D2A823D8B4ECCAEBFDF629F66CD95&vkey=904520425DA0A147116A3FAE8C741D1FE454F4EF46D2345F23DB9376E0B026D835188612410F0ECDE48916C6A851DA9D9BFE1BB349646F17&uin=547151716&fromtag=118 ws6.stream.qqmusic.qq.com 1631791584 1631791565 19
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628473349 1628473318 31
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628476421 1628476408 13
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628476473 1628476469 4
+192.168.11.68 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 www.adgoo.cn 1628477244 1628477241 3
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628477340 1628477339 1
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628477419 1628477400 19
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628477640 1628477614 26
+192.168.11.169 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1628478221 1628478216 5
+192.168.11.169 200.200.200.200/IXC8e74069be9221278fbb73a93032e1b3e 106.120.158.154 1628478599 1628478590 9
+192.168.11.169 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1628478872 1628478871 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628487698 1628487697 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628487987 1628487983 4
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628489249 1628489199 50
+192.168.11.169 isure6.stream.qqmusic.qq.com/O400004FuPTN0e7m7x.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=797A544CF7E7096A6937C43FE4E32D4B10C0A78EB4311CF2747EDFA9B8879D8414146CFF4D0EE75E819EF3BB5C42523FCBCA6E2138D6D029&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1628489858 1628489817 41
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628491209 1628491149 60
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628493575 1628493516 59
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628498892 1628498890 2
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628499218 1628499218 0
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628499455 1628499455 0
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628499796 1628499796 0
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628500078 1628500073 5
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628500290 1628500287 3
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628500484 1628500481 3
+192.168.11.216 200.200.200.200:8081/IXC424559b98662bac2182a3c7b6c545362 www.adgoo.cn 1624146595 1624146594 1
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624157399 1624157394 5
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624157411 1624157394 17
+192.168.11.216 200.200.200.200:8081/IXC424559b98662bac2182a3c7b6c545362 www.adgoo.cn 1624168195 1624168194 1
+192.168.11.187 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1632449782 1632449760 22
+192.168.11.187 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1632449981 1632449926 55
+192.168.11.187 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1632450270 1632450222 48
+192.168.11.209 182.118.73.16/amobile.music.tc.qq.com 182.118.73.16 1634519535 1634519525 10
+192.168.11.209 101.26.40.179/amobile.music.tc.qq.com 101.26.40.179 1634521299 1634521298 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536001 1634535980 21
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536006 1634535980 26
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536194 1634536194 0
+192.168.11.228 157.255.74.159/amobile.music.tc.qq.com 157.255.74.159 1634536832 1634536832 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536910 1634536910 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634537136 1634537136 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634537811 1634537811 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634538304 1634538303 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634538561 1634538560 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634538928 1634538928 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634540536 1634540536 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634540758 1634540758 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634542888 1634542888 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634544210 1634544210 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634544654 1634544654 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634544856 1634544856 0
+192.168.11.74 mail4.nospoofing.cn/coremail mail4.nospoofing.cn 1634544897 1634544846 51
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634545577 1634545577 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634545584 1634545577 7
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634545836 1634545836 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546020 1634546020 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546316 1634546316 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546758 1634546758 0
+192.168.11.222 mail3.nospoofing.cn/coremail mail3.nospoofing.cn 1634546890 1634546858 32
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546902 1634546902 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634547145 1634547145 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634547435 1634547435 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634548216 1634548214 2
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634548700 1634548700 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634549758 1634549758 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634549766 1634549758 8
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634550415 1634550414 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634550450 1634550414 36
+192.168.11.194 mail3.nospoofing.cn/coremail mail3.nospoofing.cn 1634561256 1634561236 20
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625192355 1625192354 1
+192.168.11.72 200.200.200.200:8081/IXCbb1172113e9532daf677b84d58f36b7f www.adgoo.cn 1625193912 1625193911 1
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625200857 1625200855 2
+192.168.11.152 182.254.52.187/amobile.music.tc.qq.com 182.254.52.187 1625217289 1625217254 35
+192.168.11.150 182.254.48.221/dlied1.qq.com down.qq.com 1625217345 1625217327 18
+192.168.11.150 101.71.72.206/dlied1.qq.com down.qq.com 1625217406 1625217346 60
+192.168.11.150 121.51.175.14/dlied1.qq.com down.qq.com 1625217406 1625217346 60
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217563 1625217573 -10
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217563 1625217573 -10
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217575 1625217573 2
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217575 1625217573 2
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217578 1625217573 5
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217581 1625217573 8
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217587 1625217573 14
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217590 1625217573 17
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217590 1625217573 17
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217594 1625217573 21
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217594 1625217573 21
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217594 1625217573 21
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217618 1625217573 45
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217618 1625217573 45
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217618 1625217573 45
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217630 1625217573 57
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217640 1625217583 57
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217646 1625217587 59
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217960 1625217957 3
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217969 1625217957 12
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217975 1625217957 18
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217981 1625217957 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625218014 1625217957 57
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625218948 1625218932 16
+192.168.11.217 119.249.48.89/6572030CA2E3B718FADC72F92 ykugc.cp31.ott.cibntv.net 1625794256 1625794254 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625814149 1625814147 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625815126 1625815124 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625815546 1625815507 39
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625815629 1625815627 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625816689 1625816689 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817110 1625817107 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817503 1625817501 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817801 1625817799 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817967 1625817966 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625820010 1625820010 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625820443 1625820425 18
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625821174 1625821170 4
+192.168.11.228 ws.stream.qqmusic.qq.com/RS020013SWho2JECJP.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=44D9B6D6CEBEA3DD686F39324AB1F1FD04D519DB7EFF9BF4ED951AD27AE7D4DCE56CA865160F96792884E424E9AB50D611DBB28AC7099303&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634192064 1634192064 0
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634192549 1634192544 5
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634193271 1634193261 10
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634196526 1634196526 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS02002Qf2pA4SWK8f.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=806BE79005292F1337046BA0AE684404A53D505EDC931A885AE673C12A641C9E4B8C0525A72566807C5D448B8AD2D172B64FC8DA64CE0DAC&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634196814 1634196814 0
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634197276 1634197276 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS0200368y060W0NsX.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=D9F307A9CC35960B8B40F5EC72A07C24DE1A2F92AE54F34D5AAF98EFB8F1B61C0EFA767FC11F0C06FE6929359DB16355A8458121ADE769ED&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634197564 1634197564 0
+192.168.11.228 isure.stream.qqmusic.qq.com/RS02000RYQNF4CNYLp.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=7D988EC41EBC83856158866A14FAE8AFCC3C91EBB6F88DC5580B798AA43643AD7AC587AFCFE0E6B47D320F425E4133D50BE41B8174B8647B&uin=&fromtag=83 isure.stream.qqmusic.qq.com 1634197785 1634197785 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS02000uy1Dg3wxs29.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=1383DE25141C33BF249CB4C002D9A5C14572F87C27DCFA610A6357144D6B92892164407DC144755C2FAE460ADBE4C78B1AC1A60201DD5244&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634199203 1634199203 0
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634199615 1634199615 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS02002202B43Cq4V4.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=5AF3A2B778235C69869745738299120AC1DF22736B2CCD2D5474E6B3513396845BD21C3ABD2A64A627C643A0827EFDDB3DBC0FE2BC9DDB6C&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634199942 1634199941 1
+192.168.11.116 www.bjpowernode.com/Public www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 www.bjpowernode.com/Public www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 www.bjpowernode.com/Public www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 www.bjpowernode.com/static www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 v.itheima.com/JAVAXKJSg java.itheima.com 1634204490 1634204489 1
+192.168.11.116 v.itheima.com/czbkzjtd java.itheima.com 1634204490 1634204489 1
+192.168.11.216 campus.51job.com/m campus.51job.com 1634206781 1634206781 0
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840807 1631840803 4
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840815 1631840803 12
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840819 1631840803 16
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840846 1631840803 43
+192.168.10.197 159.226.95.84/themes 159.226.95.84 1631840862 1631840803 59
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840960 1631840958 2
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840975 1631840958 17
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840982 1631840958 24
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841040 1631841028 12
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841049 1631841028 21
+192.168.10.197 159.226.95.84/captcha?type=login&num=0.7917461250310223 159.226.95.84 1631841120 1631841069 51
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841034 1631841028 6
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841230 1631841227 3
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841261 1631841227 34
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841261 1631841227 34
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841279 1631841227 52
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841295 1631841251 44
+192.168.11.203 isure.stream.qqmusic.qq.com/F0M00023M0mu1Xa1Qy.mflac?guid=5bd50342dd04210cd36d84ca85d74d604f6f7f1e&vkey=80C4FA1980980037F80F1DDDDC2CF342E04D12AF60DCBED326BFC3F0C7A9A3618B0219E823C61EBBE7DB5B1C0A82AA5AD0FEE0EAA6A37EFD&uin=1965190613&fromtag=999 isure.stream.qqmusic.qq.com 1631843894 1631843854 40
+192.168.11.203 isure.stream.qqmusic.qq.com/F0M000466PzR03MhLa.mflac?guid=5bd50342dd04210cd36d84ca85d74d604f6f7f1e&vkey=F8392F9461D28646ADD77EEBF70285024498DE2042F5B1F6EA8AEA1C6AF63CD09284138399079E154619619DAE68A44E2A3CA19AD4E2E129&uin=1965190613&fromtag=999 isure.stream.qqmusic.qq.com 1631844075 1631844026 49
+192.168.11.163 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1631845660 1631845644 16
+192.168.11.163 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1631845685 1631845644 41
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631845876 1631845820 56
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631846158 1631846101 57
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631846465 1631846408 57
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631846465 1631846408 57
+192.168.11.163 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1631847903 1631847888 15
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848026 1631847966 60
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848026 1631847966 60
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848063 1631848014 49
+192.168.11.163 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1631848500 1631848499 1
+192.168.11.163 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1631848699 1631848697 2
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859780 1631859722 58
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859780 1631859722 58
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859897 1631859840 57
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859977 1631859931 46
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859986 1631859931 55
+192.168.11.163 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1631869438 1631869379 59
+192.168.11.163 106.120.158.148/amobile.music.tc.qq.com 106.120.158.148 1631870700 1631870702 -2
+192.168.11.203 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1631871849 1631871836 13
+192.168.11.203 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1631871849 1631871836 13
+192.168.11.203 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1631872507 1631872449 58
+192.168.11.187 isure.stream.qqmusic.qq.com/F000002HNYyY11rsUO.flac?guid=000000005de8e53f00000179d4d84b0c&vkey=018C85932ACF5658E4C8416933D38BCDB0DF2AD3C3078C7267A511D0862FDD31BC88643D9DEB7C612B8DA430BEF5C0E003FE009D31C93C1C&uin=2996816019&fromtag=110 isure.stream.qqmusic.qq.com 1632723205 1632723179 26
+192.168.11.187 isure.stream.qqmusic.qq.com/F000003f9LpN1JpBeu.flac?guid=000000005de8e53f00000179d4d84b0c&vkey=6AF997C04BD244E23AAD4797D03A67D2BCFDE83677512B87B9AC1B1912096097742C659D2069FB5FC76BC3FED493209CA4CA044F0267F4F0&uin=2996816019&fromtag=110 isure.stream.qqmusic.qq.com 1632723555 1632723562 -7
+192.168.11.187 42.202.165.32/amobile.music.tc.qq.com 42.202.165.32 1632737883 1632737837 46
+192.168.11.187 42.202.165.32/amobile.music.tc.qq.com 42.202.165.32 1632737917 1632737881 36
+192.168.11.187 150.139.230.176/amobile.music.tc.qq.com 150.139.230.176 1632737991 1632737948 43
+192.168.11.187 150.139.230.176/amobile.music.tc.qq.com 150.139.230.176 1632738071 1632738021 50
+192.168.11.187 150.139.230.176/amobile.music.tc.qq.com 150.139.230.176 1632738166 1632738136 30
+192.168.11.187 27.185.227.47/amobile.music.tc.qq.com 27.185.227.47 1632741035 1632740976 59
+192.168.11.176 200.200.200.200:8081/IXC2043ad8f6f6ca6b07d109472b96ac526 adgoo.cn 1627864651 1627864644 7
+192.168.11.176 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 adgoo.cn 1627864660 1627864644 16
+192.168.11.96 ykugc.cp31.ott.cibntv.net.qn302.myalicdn.com/6773A8F090D34715FE4AF6AEF ykugc.cp31.ott.cibntv.net 1627883231 1627883230 1
+192.168.11.96 ykugc.cp31.ott.cibntv.net.qn302.myalicdn.com/6773A8F090D34715FE4AF6AEF ykugc.cp31.ott.cibntv.net 1627883231 1627883230 1
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627884441 1627884438 3
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627886601 1627886611 -10
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627886899 1627886872 27
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627889126 1627889104 22
+192.168.11.94 v.xiaohongshu.com/8893c0c23dc344a98af6f28d39be8729714fe5b3_r?sign=6d79e26973d42aeef96e769390a4aba4&t=61685400 v.xiaohongshu.com 1634113425 1634113425 0
+192.168.11.102 m10.music.126.net/20200204151457 www.secrank.com 1634113605 1634113604 1
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634114217 1634114213 4
+192.168.11.228 182.118.73.17/amobile.music.tc.qq.com 182.118.73.17 1634114960 1634114926 34
+192.168.11.228 220.197.201.148/amobile.music.tc.qq.com 220.197.201.148 1634116020 1634116010 10
+192.168.11.228 upos-sz-mirrorkodo.bilivideo.com/upgcxcode www.bilibili.com 1634116213 1634116186 27
+192.168.11.228 upos-sz-mirrorkodo.bilivideo.com/upgcxcode www.bilibili.com 1634116213 1634116186 27
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634118929 1634118927 2
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634118929 1634118927 2
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634118929 1634118927 2
+192.168.11.106 111.206.23.43/videos www.iqiyi.com 1625283486 1625283482 4
+192.168.11.185 live-s3m.mediav.com/nativevideo www.adgoo.cn 1629075038 1629075036 2
+192.168.11.206 alyvidue.xmfeel.com/sv www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/sv www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/sv www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/68ffcd80c7ee49748aaf994d9a3e8780 www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/68ffcd80c7ee49748aaf994d9a3e8780 www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/9cdf8d1bd29641e19c32fbe691ebcdbc www.1feel.cn 1629077745 1629077738 7
+192.168.11.185 200.200.200.200:8081/IXC86745ce897d7ad49bfbd9227413fed2c www.adgoo.cn 1629080436 1629080432 4
+192.168.11.59 200.200.200.200/IXC8462cd258119b89ed3af9efe7728348d isure.stream.qqmusic.qq.com 1629083870 1629083870 0
+192.168.11.59 200.200.200.200/IXCda67a9b551816940b2336a85dfbc4b74 isure.stream.qqmusic.qq.com 1629084362 1629084360 2
+192.168.11.178 200.200.200.200:8081/IXC4b7fb2d4afc55ef1cb8aa8fbb1957cba music.163.com 1629088869 1629088871 -2
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1629094066 1629094045 21
+192.168.11.59 200.200.200.200/IXCcd775048b33cf09f083cb75fbbe6f2de isure.stream.qqmusic.qq.com 1629096959 1629096955 4
+192.168.11.59 200.200.200.200/IXC200854eb5605850ca03edf0b3d53bc30 isure.stream.qqmusic.qq.com 1629097193 1629097191 2
+192.168.11.59 200.200.200.200/IXC96602338e011948ae704fa2948433e30 isure.stream.qqmusic.qq.com 1629097312 1629097311 1
+192.168.11.59 200.200.200.200/IXCc00e967e57ff42d28c5c53a8d2d3ac3e isure.stream.qqmusic.qq.com 1629097871 1629097870 1
+192.168.11.152 gif.img.avatarworks.com/20210812 anchor.avatarworks.com 1629098332 1629098327 5
+192.168.11.152 gif.img.avatarworks.com/20210812 anchor.avatarworks.com 1629098332 1629098327 5
+192.168.11.152 gif.img.avatarworks.com/20210812 anchor.avatarworks.com 1629098332 1629098327 5
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.68 200.200.200.200:8081/IXC0995e0a77dbd1cf76a46e8c30af4c862 www.adgoo.cn 1627922243 1627922241 2
+192.168.11.68 200.200.200.200:8081/IXCcfc44ac86128850d196efb11dd3c3357 www.adgoo.cn 1627922243 1627922241 2
+192.168.11.68 200.200.200.200:8081/IXC335761e4e7ea1466f6e6584e6a10d37c www.adgoo.cn 1627922243 1627922241 2
+192.168.11.69 200.200.200.200:8081/IXCd104de8779032397b509bb4e66a3481a ykugc.cp31.ott.cibntv.net 1627954634 1627954633 1
+192.168.11.69 ykugc.cp31.ott.cibntv.net.qn302.myalicdn.com/677396D8FD534715FE8A32DE7 ykugc.cp31.ott.cibntv.net 1627954643 1627954633 10
+192.168.11.68 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb www.adgoo.cn 1627960041 1627960039 2
+192.168.11.198 mirrors.163.com/centos mirrors.163.com 1625620392 1625620390 2
+192.168.11.198 mirrors.163.com/centos mirrors.163.com 1625620699 1625620696 3
+192.168.11.232 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1625622847 1625622822 25
+192.168.11.193 200.200.200.200:8081/IXCb6ac5647feb9d94f765288505090adf3 www.adgoo.cn 1625626625 1625626623 2
+192.168.11.163 200.200.200.200:8081/IXC6d7bc4835308c1d9346cc8a78134f94c www.adgoo.cn 1625627523 1625627521 2
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625636864 1625636860 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625642763 1625642758 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643009 1625643007 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643319 1625643307 12
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643405 1625643367 38
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643420 1625643367 53
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643651 1625643650 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625644265 1625644260 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625644778 1625644777 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625645055 1625644995 60
+192.168.11.232 200.200.200.200:8081/IXC2218a7bd146086452d1904a90928a1aa pc.360kan.com 1629011411 1629011402 9
+192.168.11.232 ysf.nosdn.127.net/webapi m.hqwx.com 1629012271 1629012268 3
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1629013623 1629013615 8
+192.168.11.232 200.200.200.200:8081/IXC35650296cdc8d44e2f4d227b1154adfd pc.360kan.com 1629016019 1629016015 4
+192.168.11.232 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb pc.360kan.com 1629018431 1629018416 15
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020830 1629020815 15
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc pc.360kan.com 1629023229 1629023215 14
+192.168.11.232 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc pc.360kan.com 1629023263 1629023215 48
+192.168.11.232 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc pc.360kan.com 1629023263 1629023215 48
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1629026830 1629026816 14
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629029235 1629029220 15
+192.168.11.232 video.jiandiao.com/ www.jiandiao.com 1629030544 1629030542 2
+192.168.11.232 video.jiandiao.com/ video.jiandiao.com 1629030544 1629030543 1
+192.168.11.59 200.200.200.200/IXC3c5ce86c5ceca47940e2de738ba7e95a isure.stream.qqmusic.qq.com 1629030869 1629030868 1
+192.168.11.59 200.200.200.200/IXC246a15872c1c07c47ffd5dd7cc315f24 isure.stream.qqmusic.qq.com 1629034030 1629034028 2
+192.168.11.59 200.200.200.200/IXCee7067be49f9dc5e3f16fbf6279b7b9f isure.stream.qqmusic.qq.com 1629034519 1629034518 1
+192.168.11.59 200.200.200.200/IXC4c0704b53508935233c3f81b3299ff0b isure.stream.qqmusic.qq.com 1629035008 1629035007 1
+192.168.11.59 200.200.200.200/IXCa86a983ca84e9e2c34026ede13da7c92 isure.stream.qqmusic.qq.com 1629035244 1629035231 13
+192.168.11.232 200.200.200.200:8081/IXC86745ce897d7ad49bfbd9227413fed2c pc.360kan.com 1628908428 1628908420 8
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628913221 1628913218 3
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628915631 1628915618 13
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628915659 1628915618 41
+192.168.11.232 200.200.200.200:8081/IXC506a8ac0e80c2da31197ab99a048f68b pc.360kan.com 1628918021 1628918018 3
+192.168.11.232 200.200.200.200:8081/IXC0ffa36a9f24927cf1cd8be32d3ab90e5 pc.360kan.com 1628922835 1628922818 17
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925222 1628925219 3
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930027 1628930019 8
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932435 1628932419 16
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932476 1628932419 57
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932476 1628932419 57
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932476 1628932419 57
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934832 1628934819 13
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937228 1628937219 9
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb pc.360kan.com 1628939643 1628939619 24
+192.168.11.236 static.tianya.cn/js wenda.tianya.cn 1626076572 1626076566 6
+192.168.11.176 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626077662 1626077660 2
+192.168.11.176 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626077663 1626077660 3
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078375 1626078349 26
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078375 1626078349 26
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078375 1626078349 26
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078393 1626078349 44
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078393 1626078349 44
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078418 1626078359 59
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078418 1626078359 59
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078418 1626078359 59
+192.168.11.104 200.200.200.200/IXC06c02cb20652aab439c51be332934e73 isure6.stream.qqmusic.qq.com 1626087783 1626087768 15
+192.168.11.104 200.200.200.200/IXC91e4695904f017222a1541baea73c9aa isure6.stream.qqmusic.qq.com 1626087979 1626087978 1
+192.168.11.104 200.200.200.200/IXC3edd3aba7290e864d61032a0b1dcff21 isure6.stream.qqmusic.qq.com 1626088231 1626088230 1
+192.168.11.104 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a isure6.stream.qqmusic.qq.com 1626088498 1626088477 21
+192.168.11.104 200.200.200.200/IXC5e3235d916e8490e9635eafc90da5c8c isure6.stream.qqmusic.qq.com 1626088974 1626088919 55
+192.168.11.104 200.200.200.200/IXCd6e2ccaeb4d6217614dc15a3bc2bfc15 isure6.stream.qqmusic.qq.com 1626089011 1626088980 31
+192.168.11.104 200.200.200.200/IXCebb9842e8fe1a19175bfec83714d6454 182.118.73.30 1626089377 1626089376 1
+192.168.11.104 200.200.200.200/IXC9c34dbad451dd736e5523390c64edcfb 182.118.73.30 1626089454 1626089437 17
+192.168.11.104 200.200.200.200/IXCb3bd9f3b612ec39e4cc17b0a8e991914 182.118.73.34 1626089914 1626089865 49
+192.168.11.104 200.200.200.200/IXC4f904491924c51fd0c08afab67cdcdc4 182.118.73.34 1626090237 1626090215 22
+192.168.11.104 200.200.200.200/IXC9a5dea5d50d9255292933e384bf656a5 182.118.73.34 1626090563 1626090514 49
+192.168.11.104 200.200.200.200/IXCa37c17ab35686d02f4f5345db383fb77 182.118.73.34 1626090695 1626090682 13
+192.168.11.104 200.200.200.200/IXC197b49a52cb87514061c87446aa9d213 182.118.73.34 1626090710 1626090682 28
+192.168.11.104 200.200.200.200/IXC0dc1a2114568de42a948a0acd7826ee6 182.118.73.34 1626090827 1626090783 44
+192.168.11.104 200.200.200.200/IXC1221b04749f7ccf5a8847a21a71e701a isure6.stream.qqmusic.qq.com 1626091045 1626090998 47
+192.168.11.104 200.200.200.200/IXC0de740306065478168cb5f58472dd59f isure6.stream.qqmusic.qq.com 1626091334 1626091280 54
+192.168.11.104 200.200.200.200/IXCd9a8aac9b2fa04be7fe42d2794150a06 182.118.73.35 1626091536 1626091495 41
+192.168.11.104 200.200.200.200/IXC77f72c91f730c25f9a07f57f3ed2da5c 182.118.73.35 1626091721 1626091664 57
+192.168.11.104 200.200.200.200/IXC5578e4dfddc0975b0c404eaf11ad3510 182.118.73.35 1626092053 1626091997 56
+192.168.11.104 200.200.200.200/IXCc88c06e840d71074c9e25cdcbf6d57c9 182.118.73.35 1626092249 1626092209 40
+192.168.11.104 200.200.200.200/IXC82c4d96522fa7caafe1019fbfe88a8eb 182.118.73.35 1626092486 1626092445 41
+192.168.11.104 200.200.200.200/IXCe1907c9d956ecb2767160d9a1dbef009 182.118.73.35 1626092768 1626092767 1
+192.168.11.104 200.200.200.200/IXC167d9b385d1225e420f2b4ede1067b97 isure6.stream.qqmusic.qq.com 1626093281 1626093275 6
+192.168.11.104 200.200.200.200/IXCb0377b6c5df36fc7b2a2e354b80e29ce isure6.stream.qqmusic.qq.com 1626093518 1626093478 40
+192.168.11.104 200.200.200.200/IXC881b20ef97252987c4831c9bb07ff180 isure6.stream.qqmusic.qq.com 1626093730 1626093686 44
+192.168.11.104 200.200.200.200/IXC2ad60216a59d6cca5be783fd881c4b3b isure6.stream.qqmusic.qq.com 1626093958 1626093918 40
+192.168.11.104 200.200.200.200/IXCca0632dc44f950d9c1a9b68b57520004 isure6.stream.qqmusic.qq.com 1626094154 1626094113 41
+192.168.11.104 200.200.200.200/IXCcb4391f975131791a44c6a229204f156 isure6.stream.qqmusic.qq.com 1626094332 1626094291 41
+192.168.11.206 200.200.200.200:8081/IXC94b90607aa8977d4468506579694d3a3 www.thepaper.cn 1628643461 1628643458 3
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649920 1628649910 10
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649924 1628649910 14
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649924 1628649910 14
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649924 1628649910 14
+192.168.11.76 www.tsingoal.com/templates www.tsingoal.com 1628662357 1628662312 45
+192.168.11.169 200.200.200.200/IXC1bc67104fda4a3d0e00eabc32b61e342 106.120.158.155 1628667063 1628667003 60
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628833999 1628833993 6
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834002 1628833993 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834002 1628833993 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834021 1628833993 28
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834021 1628833993 28
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834033 1628833993 40
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834048 1628833993 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834048 1628833993 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834094 1628834095 -1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834110 1628834095 15
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834113 1628834095 18
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834113 1628834095 18
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834116 1628834095 21
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834116 1628834095 21
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834128 1628834095 33
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834128 1628834095 33
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834128 1628834095 33
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834134 1628834095 39
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834140 1628834095 45
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834140 1628834095 45
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834140 1628834095 45
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834150 1628834095 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834162 1628834138 24
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834162 1628834138 24
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844367 1628844353 14
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844373 1628844353 20
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844583 1628844582 1
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844849 1628844849 0
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628849221 1628849220 1
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628849396 1628849390 6
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628849688 1628849687 1
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628850017 1628850015 2
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628850318 1628850318 0
+192.168.11.192 200.200.200.200:8081/IXCbea98ce3b9cb5da8cf4bef7847f96b1a www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXCbea98ce3b9cb5da8cf4bef7847f96b1a www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628850785 1628850780 5
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628851344 1628851338 6
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628851645 1628851645 0
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100283 1625100271 12
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100314 1625100271 43
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100348 1625100296 52
+192.168.11.72 200.200.200.200:8081/IXC38baa4cf2440945552af43b2583e5ed9 www.people.com.cn 1625102775 1625102772 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100283 1625100271 12
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100348 1625100296 52
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103466 1625103448 18
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103469 1625103448 21
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103478 1625103448 30
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103466 1625103448 18
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103469 1625103448 21
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103472 1625103448 24
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103475 1625103448 27
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103478 1625103448 30
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103485 1625103448 37
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103488 1625103448 40
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103491 1625103448 43
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103494 1625103448 46
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103497 1625103448 49
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103500 1625103448 52
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103503 1625103448 55
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103506 1625103448 58
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625104993 1625104990 3
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625104996 1625104990 6
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625104999 1625104990 9
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105002 1625104990 12
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105005 1625104990 15
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105008 1625104990 18
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106041 1625106039 2
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106047 1625106039 8
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105011 1625104990 21
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105014 1625104990 24
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105017 1625104990 27
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105017 1625104990 27
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105021 1625104990 31
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105024 1625104990 34
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105027 1625104990 37
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105027 1625104990 37
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105030 1625104990 40
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105030 1625104990 40
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105033 1625104990 43
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105033 1625104990 43
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105036 1625104990 46
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105039 1625104990 49
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105042 1625104990 52
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105045 1625104990 55
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105045 1625104990 55
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106043 1625106039 4
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106059 1625106039 20
+192.168.11.158 1.56.98.150/amobile.music.tc.qq.com 1.56.98.150 1625106461 1625106435 26
+192.168.11.158 1.56.98.150/amobile.music.tc.qq.com 1.56.98.150 1625106761 1625106744 17
+192.168.11.158 1.56.98.150/amobile.music.tc.qq.com 1.56.98.150 1625106783 1625106744 39
+192.168.11.158 182.118.73.49/amobile.music.tc.qq.com 182.118.73.49 1625107664 1625107628 36
+192.168.11.158 182.118.73.49/amobile.music.tc.qq.com 182.118.73.49 1625107732 1625107689 43
+192.168.11.197 200.200.200.200:8081/IXPc84433269272f4f5c4d50e133e1494141692a7d2787dd k.sina.com.cn 1625107932 1625107898 34
+192.168.11.158 182.118.73.42/amobile.music.tc.qq.com 182.118.73.42 1625108294 1625108244 50
+192.168.11.193 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625108503 1625108500 3
+192.168.11.193 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625108515 1625108500 15
+192.168.11.158 182.118.73.22/amobile.music.tc.qq.com 182.118.73.22 1625109477 1625109434 43
+192.168.11.158 182.118.73.22/amobile.music.tc.qq.com 182.118.73.22 1625110306 1625110299 7
+192.168.11.206 dldir1.qq.com/invc dldir1.qq.com 1625120684 1625120682 2
+192.168.11.206 dldir1.qq.com/invc dldir1.qq.com 1625120684 1625120682 2
+192.168.11.206 dldir1.qq.com/invc dldir1.qq.com 1625120690 1625120682 8
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103485 1625103448 37
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103488 1625103448 40
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103506 1625103448 58
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625143265 1625143258 7
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625143277 1625143258 19
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625143292 1625143258 34
+192.168.11.100 tbm-auth.alicdn.com/e99361edd833010b mo.m.tmall.com 1625376532 1625376518 14
+192.168.11.152 iadmusicmat.music.126.net/23054dfbf21540e6bdc5cc20b37749f1.mp4 music.163.com 1625383264 1625383252 12
+192.168.11.169 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628560136 1628560120 16
+192.168.11.169 200.200.200.200/IXC8108b7bf0883b0909cb832c804b8be7c 106.120.158.152 1628560329 1628560314 15
+192.168.11.169 isure6.stream.qqmusic.qq.com/O400004XWBNM3ysirP.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=B21B471CBC8943D4875DED9361D0EC8CF363285895A2740F8E567FDF71D377D19F3EE686A447AE0444D55858F8065B6F79E35E1DD6D57B25&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1628560766 1628560750 16
+192.168.11.169 isure6.stream.qqmusic.qq.com/O400000Fm1Mx3M71HL.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=0DDACFB9D9EC9E6451D071FCA0D3CF966061D5A9074E360632CD3197329D3D541764321463A0B5DA3D4234467D1A50945A0F578C7A97BAA0&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1628561762 1628561703 59
+192.168.11.169 200.200.200.200/IXC33efb19d04a49664cfcc40aa3a29bdbd isure6.stream.qqmusic.qq.com 1628561796 1628561763 33
+192.168.11.216 registry.npm.taobao.org/@types%2flodash 1628564998 1628564939 59
+192.168.11.216 ws.stream.qqmusic.qq.com/F000003Aeujd0SIMS6.flac?guid=6DFC39D5D033058C917508D8219B02C7&vkey=572A550391260420A922D6C56E868441DE08E7EA1763948FB614ACF521A41B40E4060F416055F955605AFBB54B89F4564BE913C0A00B2618&uin=875075608&fromtag=80 ws.stream.qqmusic.qq.com 1628586139 1628586124 15
+192.168.11.176 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626136558 1626136555 3
+192.168.11.158 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626146286 1626146286 0
+192.168.11.158 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626156552 1626156551 1
+192.168.11.165 www.hdbkq.cn/templets 360.hdbkqyy.cn 1626406289 1626406288 1
+192.168.11.121 27.221.15.151/amobile.music.tc.qq.com 27.221.15.151 1626415019 1626414969 50
+192.168.11.121 200.200.200.200/IXC80f9a867f9a0ae7e289588835b6393bc 27.221.15.151 1626415287 1626415282 5
+192.168.11.121 200.200.200.200/IXC25908ce6f79fe31aec2bfa28acf2653e 27.221.15.151 1626415806 1626415797 9
+192.168.11.121 27.221.15.151/amobile.music.tc.qq.com 27.221.15.151 1626415864 1626415860 4
+192.168.11.184 tb-video.bdstatic.com/tieba-smallvideo-transcode-crf tieba.baidu.com 1626416064 1626416051 13
+192.168.11.121 27.221.15.151/amobile.music.tc.qq.com 27.221.15.151 1626416113 1626416089 24
+192.168.11.121 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626416414 1626416389 25
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418024 1626417986 38
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418441 1626418432 9
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418527 1626418494 33
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418733 1626418719 14
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626419305 1626419255 50
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626419489 1626419478 11
+192.168.11.121 27.221.15.153/amobile.music.tc.qq.com 27.221.15.153 1626419821 1626419788 33
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626420153 1626420120 33
+192.168.11.121 27.221.15.153/amobile.music.tc.qq.com 27.221.15.153 1626420116 1626420093 23
+192.168.11.121 182.254.52.212/amobile.music.tc.qq.com 182.254.52.212 1626420684 1626420679 5
+192.168.11.121 182.254.52.187/amobile.music.tc.qq.com 182.254.52.187 1626420779 1626420756 23
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626424287 1626424286 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626426834 1626426831 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626427639 1626427639 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626428192 1626428162 30
+192.168.11.228 www.mybuaa.com/static www.mybuaa.com 1626429826 1626429820 6
+192.168.11.228 www.mybuaa.com/static www.mybuaa.com 1626429998 1626429985 13
+192.168.11.74 200.200.200.200:8081/IXCe755482b103a594e47ef5604a47a8945 www.adgoo.cn 1626430527 1626430522 5
+192.168.11.152 iadmusicmatvideo.music.126.net/feb86ae186614bcba698043ac582332e.mp4 music.163.com 1626442162 1626442113 49
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628094445 1628094439 6
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628094446 1628094439 7
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628094451 1628094439 12
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628132247 1628132241 6
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628132259 1628132241 18
+192.168.11.68 200.200.200.200:8081/IXC86745ce897d7ad49bfbd9227413fed2c www.adgoo.cn 1628143040 1628143038 2
+192.168.11.68 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc www.adgoo.cn 1628143040 1628143038 2
+192.168.11.112 221.203.6.16/amobile.music.tc.qq.com 221.203.6.16 1626599077 1626599075 2
+192.168.11.112 isure.stream.qqmusic.qq.com/F000002umgFu3IY6Lc.flac?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=8FD5077F5B060DC7CB802E2B202952ED8DAAD024FF032202EF09A6810E398D79D0B81EFA577FB6FC80B0EC7BD6F131B8DF75A3D248BE7C4A&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626599393 1626599357 36
+192.168.11.112 isure.stream.qqmusic.qq.com/F000002umgFu3IY6Lc.flac?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=8FD5077F5B060DC7CB802E2B202952ED8DAAD024FF032202EF09A6810E398D79D0B81EFA577FB6FC80B0EC7BD6F131B8DF75A3D248BE7C4A&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626599667 1626599631 36
+192.168.11.112 isure.stream.qqmusic.qq.com/O600002FzeSE37y0TJ.ogg?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=814F83D715C4535E67FD39D2162FEB3844448592F4B219965F9A204D01F156B248A280000FF97679114D607E26EC47093929E964F12920F4&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626599906 1626599884 22
+192.168.11.112 isure.stream.qqmusic.qq.com/F000003bNq5B4L6Ioc.flac?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=59CD1B427B2F1982C465554F21E791457FB3A71A49E05E17364A52A8A01B5B3F355FFF20AEC0EC5E8FC0E2CCD35DBECCADAB7A345D81D333&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626600220 1626600214 6
+192.168.11.112 61.179.119.159/amobile.music.tc.qq.com 61.179.119.159 1626601737 1626601735 2
+192.168.11.112 61.179.119.159/amobile.music.tc.qq.com 61.179.119.159 1626602017 1626602015 2
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628137 1632628083 54
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628149 1632628104 45
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628155 1632628104 51
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628161 1632628104 57
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628168 1632628133 35
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628174 1632628133 41
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628180 1632628133 47
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628186 1632628133 53
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628192 1632628133 59
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628506 1632628501 5
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628542 1632628501 41
+192.168.11.187 27.185.227.49/amobile.music.tc.qq.com 27.185.227.49 1632639728 1632639695 33
+192.168.11.187 27.185.227.49/amobile.music.tc.qq.com 27.185.227.49 1632641457 1632641416 41
+192.168.11.187 27.185.227.49/amobile.music.tc.qq.com 27.185.227.49 1632641906 1632641890 16
+192.168.11.228 tbm-auth.alicdn.com/NysQic7pGbDDDv6hzoj www.taozhutu.com 1632642371 1632642370 1
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624213195 1624213194 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624240354 1624240304 50
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624240428 1624240425 3
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624245270 1624245223 47
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624245279 1624245223 56
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624245608 1624245597 11
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624256400 1624256395 5
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624256409 1624256395 14
+192.168.11.72 edge.ivideo.sina.com.cn/143704706.mp4?KID=sina,viask&Expires=1624377600&ssig=fnybIKfOE8&reqid= video.sina.com.cn 1624259383 1624259381 2
+192.168.11.121 nmt.youdao.com/scripts nmt.youdao.com 1624260834 1624260833 1
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624264593 1624264542 51
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626740532 1626740530 2
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626740532 1626740530 2
+192.168.11.228 dldir1.qq.com/invc dldir1.qq.com 1626752420 1626752391 29
+192.168.11.228 dldir1.qq.com/invc dldir1.qq.com 1626752420 1626752391 29
+192.168.11.228 dldir1.qq.com/invc dldir1.qq.com 1626752420 1626752391 29
+192.168.11.121 200.200.200.200/IXC15ac96885e9be658b628316616c93bc2 221.203.6.30 1626759901 1626759891 10
+192.168.11.121 ws6.stream.qqmusic.qq.com/O4000015YToP0qqH31.ogg?guid=ffffffffcb6ff278000001766f0b8661&vkey=2484B4BE1E5D2612A5C5FA87B3550C51E82C053A095274BFC4AB9D0E82DE1C9D51E403360E95DC52CBAA362E9ACA83A86868F5663A94FAAD&uin=2495348953&fromtag=129 ws6.stream.qqmusic.qq.com 1626760027 1626759982 45
+192.168.11.121 ws6.stream.qqmusic.qq.com/O4000039llG32BZs88.ogg?guid=ffffffffcb6ff278000001766f0b8661&vkey=2A2B52386BF169A43E4F66903A8FCD056AD651E7CE36751EC1B40365514EE4DA5CF1428A19A54D8FD49BEC23D32F19F5C6BDB3310698D653&uin=2495348953&fromtag=129 ws6.stream.qqmusic.qq.com 1626760473 1626760429 44
+192.168.11.112 61.179.119.159/amobile.music.tc.qq.com 61.179.119.159 1626774345 1626774340 5
+192.168.11.112 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626774594 1626774592 2
+192.168.11.176 200.200.200.200:8081/IXC2e64b47a988838935319a66266ec43d3 adgoo.cn 1627000152 1627000148 4
+192.168.11.130 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1627023736 1627023715 21
+192.168.11.130 200.200.200.200:8081/IXC3a56ddb1e8db1666a16464cfe843a1f3 adgoo.cn 1627023755 1627023715 40
+192.168.11.130 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb adgoo.cn 1627023767 1627023715 52
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027764 1627027759 5
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027773 1627027759 14
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027779 1627027759 20
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027788 1627027759 29
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027798 1627027759 39
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027801 1627027759 42
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027807 1627027759 48
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027819 1627027759 60
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027831 1627027815 16
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027868 1627027815 53
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027871 1627027815 56
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027859 1627027815 44
+192.168.11.210 tkipf.github.io/graph-convolutional-networks tkipf.github.io 1627043693 1627043689 4
+192.168.11.210 tkipf.github.io/graph-convolutional-networks tkipf.github.io 1627043693 1627043689 4
+192.168.11.210 tkipf.github.io/graph-convolutional-networks tkipf.github.io 1627043693 1627043689 4
+192.168.11.176 200.200.200.200:8081/IXC2238c3a9f6e97ef165501d736e6b19b1 adgoo.cn 1626482141 1626482139 2
+192.168.11.176 200.200.200.200:8081/IXCf880c1790dec39c1213e17f0be22ca28 adgoo.cn 1626482141 1626482139 2
+192.168.11.176 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626482141 1626482139 2
+192.168.11.152 xjjmv.com/demo.mp4 xjjmv.com 1626500408 1626500407 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500721 1626500714 7
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500730 1626500714 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500755 1626500714 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500755 1626500714 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500755 1626500714 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500776 1626500718 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500776 1626500718 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500776 1626500718 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500782 1626500791 -9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500782 1626500791 -9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500795 1626500791 4
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500804 1626500791 13
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500804 1626500791 13
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500810 1626500791 19
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500813 1626500791 22
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500816 1626500791 25
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500816 1626500791 25
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500819 1626500791 28
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500828 1626500791 37
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500831 1626500791 40
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500831 1626500791 40
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500841 1626500791 50
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500841 1626500791 50
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500844 1626500791 53
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500844 1626500791 53
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501000 1626501009 -9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501074 1626501015 59
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501102 1626501092 10
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501102 1626501092 10
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501111 1626501092 19
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501145 1626501092 53
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501148 1626501092 56
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626507025 1626507017 8
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626507025 1626507017 8
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626507710 1626507709 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508066 1626508064 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508186 1626508184 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508674 1626508673 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508954 1626508949 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509391 1626509390 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509452 1626509451 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509878 1626509878 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509940 1626509938 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509998 1626509938 60
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626510404 1626510404 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626510530 1626510524 6
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626510585 1626510584 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626511120 1626511116 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626511537 1626511535 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626511596 1626511595 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512201 1626512200 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512321 1626512320 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512591 1626512591 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512652 1626512651 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626513046 1626513046 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626513322 1626513321 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515101 1626515100 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515224 1626515220 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515491 1626515491 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515672 1626515671 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515731 1626515671 60
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515795 1626515791 4
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180250 1628180239 11
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180256 1628180239 17
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180275 1628180239 36
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180293 1628180239 54
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211609 1628211551 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211729 1628211734 -5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211729 1628211734 -5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211729 1628211734 -5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211612 1628211552 60
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211784 1628211734 50
+192.168.11.69 v.faakee.com/video www.meijust.com 1628214104 1628214101 3
+192.168.11.158 xxgc.hgu.edu.cn/images hguxgkx.com 1628233802 1628233751 51
+192.168.11.158 xxgc.hgu.edu.cn/images hguxgkx.com 1628233802 1628233751 51
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626654812 1626654806 6
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626654831 1626654806 25
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626654837 1626654806 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626661783 1626661763 20
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626661817 1626661763 54
+192.168.11.123 flv0.bn.netease.com/1241666f047e7430183e3978eee38e021c304b8189a73aa0f7a7673993a0d95a71b5f40c31dd0c1d3c6df8445d88fe0a99cd559e5b740b6cb672c88b4e142a249ba2407faa6ed310d83eb93a31f7ef25513034c67a15290230945ae9008da6873f70330e6b8b81a57b8e5be225f914ad64d73e3cdc286308.mp4 www.163.com 1626663019 1626663017 2
+192.168.11.123 fundact.eastmoney.com/banner stock.eastmoney.com 1626664827 1626664824 3
+192.168.11.123 ysf.nosdn.127.net/webapi note.youdao.com 1626665930 1626665927 3
+192.168.11.152 iadmusicmat.music.126.net/5a118f34cad84573b4b5837573efe022.mp4 music.163.com 1626673144 1626673136 8
+192.168.11.62 zkvideo-oss.myzaker.com/rgcms app.myzaker.com 1628725588 1628725528 60
+192.168.11.62 fundact.eastmoney.com/banner finance.eastmoney.com 1628725624 1628725622 2
+192.168.11.146 gvideo.qpic.cn/0bf26uadaaaauiagblqkq5qvb5odgd2qamaa.f10002.mp4?dis_k=f4f62f16383c08705d5cbd8c7724c1bc&dis_t=1628762406 game.weixin.qq.com 1628769257 1628769260 -3
+192.168.11.146 gvideo.qpic.cn/0b78gyaa6aaatiajc6qtxjqvanwdb43aadya.f10002.mp4?dis_k=6888f7b87c22b081f31c22dcca590b39&dis_t=1628765893 game.weixin.qq.com 1628769257 1628769260 -3
+192.168.11.146 gvideo.qpic.cn/0bf22uaccaaaquajewidtfqvbvodehkqaiia.f10002.mp4?dis_k=14278a1a13d6bad7bc4e74e9dcc0d5a8&dis_t=1628762406 game.weixin.qq.com 1628769257 1628769260 -3
+192.168.11.158 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a 61.179.119.155 1625448472 1625448455 17
+192.168.11.158 200.200.200.200/IXC1c06a99f8ee227d57e05348980f65b0a 61.179.119.155 1625448929 1625448877 52
+192.168.11.158 ws6.stream.qqmusic.qq.com/O400004QXdW72OvbTb.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=F9DD3DB7F18585CFE9629D4FD3C06D62D873CF3F6B7921195B6F50B6BA6BE0C43B83C3B029EC93E309C576801F46053AAF0E78DBDF7BEEF6&uin=1152921504878518693&fromtag=129 ws6.stream.qqmusic.qq.com 1625446561 1625446503 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625469235 1625469212 23
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625469389 1625469367 22
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625470148 1625470107 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625470151 1625470107 44
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625470154 1625470107 47
+192.168.11.158 61.179.119.146/amobile.music.tc.qq.com 61.179.119.146 1625470888 1625470837 51
+192.168.11.158 61.179.119.150/amobile.music.tc.qq.com 61.179.119.150 1625471101 1625471100 1
+192.168.11.158 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a 61.179.119.150 1625471340 1625471321 19
+192.168.11.158 200.200.200.200/IXC0dc1a2114568de42a948a0acd7826ee6 61.179.119.150 1625471715 1625471713 2
+192.168.11.144 xygh.ccgp.gov.cn/gs4 xygh.ccgp.gov.cn 1625472823 1625472819 4
+192.168.11.158 ws6.stream.qqmusic.qq.com/O600003XNpKR2nd3Iw.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7F5F0393C5EE42051ACA5760A849CFFBF0D728114BD5CAD989688A05D7226E943A9EA352F05BAA6FD186244D21C64250107C3BFF1D6E587B&uin=1152921504878518693&fromtag=129 ws6.stream.qqmusic.qq.com 1625472891 1625472869 22
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625475884 1625475883 1
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625475892 1625475883 9
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625479738 1625479737 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480049 1625480047 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480061 1625480047 14
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480408 1625480407 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480632 1625480632 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625481234 1625481233 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625481963 1625481921 42
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625482365 1625482363 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625482559 1625482558 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625483154 1625483149 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625483618 1625483615 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625483717 1625483711 6
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625485643 1625485640 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625486098 1625486097 1
+192.168.11.227 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1625486485 1625486442 43
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486488 1625486468 20
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486488 1625486468 20
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486488 1625486468 20
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486623 1625486610 13
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486859 1625486843 16
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486994 1625486945 49
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486994 1625486945 49
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486994 1625486945 49
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487068 1625487025 43
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487068 1625487025 43
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487228 1625487186 42
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625487400 1625487397 3
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487511 1625487466 45
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487511 1625487466 45
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487511 1625487466 45
+192.168.11.227 uqmv.music.tc.qq.com/25245E229D829AEE612297CA91E760B7A367848D328005A86A916C2611342C79BE34751DF309795CD651265E01D2DDC8ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487643 1625487643 0
+192.168.11.227 uqmv.music.tc.qq.com/25245E229D829AEE612297CA91E760B7A367848D328005A86A916C2611342C79BE34751DF309795CD651265E01D2DDC8ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487643 1625487643 0
+192.168.11.227 uqmv.music.tc.qq.com/F6DEF8F3740114123603FDAD13361D02A03ABF25611E439CDC9B30E6F8738C3B65229F3A4F9389E067DC5E5407C0A010ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487649 1625487643 6
+192.168.11.227 uqmv.music.tc.qq.com/F6DEF8F3740114123603FDAD13361D02A03ABF25611E439CDC9B30E6F8738C3B65229F3A4F9389E067DC5E5407C0A010ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487649 1625487643 6
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487701 1625487648 53
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625487710 1625487653 57
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625488878 1625488874 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625489271 1625489267 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625489723 1625489722 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625489974 1625489970 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625490177 1625490175 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625490239 1625490235 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625490748 1625490747 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625493286 1625493286 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625493455 1625493454 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625494168 1625494167 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625494318 1625494317 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625494438 1625494437 1
+192.168.11.103 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626830623 1626830605 18
+192.168.11.103 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626830671 1626830664 7
+192.168.11.103 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626830671 1626830664 7
+192.168.11.103 live-s3m.mediav.com/nativevideo adgoo.cn 1626830686 1626830664 22
+192.168.11.103 live-s3m.mediav.com/nativevideo adgoo.cn 1626830695 1626830664 31
+192.168.11.152 200.200.200.200:8081/IXC313494517c114496bcff2e4b841f2ba8 music.163.com 1626842348 1626842326 22
+192.168.11.152 200.200.200.200:8081/IXC4754268f107499c08073d03d81ec5e34 music.163.com 1626842370 1626842326 44
+192.168.11.103 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626846944 1626846942 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624499169 1624499150 19
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624499178 1624499150 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624499193 1624499150 43
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624502360 1624502357 3
+192.168.11.236 200.200.200.200:8081/IXCe2eedefff41176434234780c0a7ecc7c www.adgoo.cn 1624502373 1624502357 16
+192.168.11.121 nmt.youdao.com/scripts nmt.youdao.com 1624503202 1624503197 5
+192.168.10.223 dldir1.qq.com/invc dldir1.qq.com 1624503436 1624503429 7
+192.168.10.223 dldir1.qq.com/invc dldir1.qq.com 1624503436 1624503429 7
+192.168.10.223 dldir1.qq.com/invc dldir1.qq.com 1624503436 1624503429 7
+192.168.11.236 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1624507791 1624507773 18
+192.168.11.236 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1624507791 1624507773 18
+192.168.11.236 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1624507791 1624507773 18
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624519627 1624519626 1
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624519627 1624519626 1
+192.168.11.236 200.200.200.200:8081/IXC29106419759a8fb887e6a4c22ec27de9 www.adgoo.cn 1624519628 1624519626 2
+192.168.11.158 61.179.119.146/amobile.music.tc.qq.com 61.179.119.146 1624519953 1624519894 59
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624520099 1624520092 7
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624520559 1624520553 6
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624520860 1624520852 8
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624521172 1624521127 45
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624521310 1624521292 18
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624521513 1624521480 33
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400002iWK0Z1MDsLF.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=460B39C57A79C95B39D137F0A50B0DC6B320465F2EAD0FE64099B7CDD9E4295F7E253325B2BC223E56D2273D893735B14A12F5C25E615CEF&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624521811 1624521771 40
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400003jfgq435vJqv.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=D2CED709381152B0550C21CC1B1829066DD87DA54789FBA69B09A109877D4A97017562F5A5518B8277BBB5BCB4573151D2C6B82145908B64&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522054 1624522038 16
+192.168.11.158 isure6.stream.qqmusic.qq.com/O4000009TKer1yYbn6.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=206282905D50C59022596D15AA9B79460C256257CDBA7FE463E40611121902DEC9881C08BA46C96972A549E17D006713932A6BAA3D3E212C&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522241 1624522221 20
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400003jFOiK2uvQJU.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=35A32CA6BFE7E652829F347BADBA8B00868D575C38DD1061C249F7CC617D17B96902312DE0E82841539CE32BE633C9BED5AE65D142A43026&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522443 1624522428 15
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400000NS51h3V4TW1.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=5BEC713D500CE6A3253709ABC7C28CE248651B086543DDC8DD116C998B615892C3C2E56993C89D7A8AC2402C58921B93AC9A91D0EBF15DF6&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522630 1624522617 13
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400000DE5Hd2elKpM.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=F0B8F90345560D2371A26C9182E0901A1466DE14865465CF79C9102745BF10CDBA78CA40625D5CFDAC9801D98857CB78E01398262517C2F4&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522787 1624522771 16
+192.168.11.158 isure6.stream.qqmusic.qq.com/O40000108wbk2u7G7q.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=470A40D585426AF87157EEABC2FFA4FCE2EC46F971CA7FA3BF35B22E87177B996EBE1C28017715055AFB9C51A1933EB34F1EF02D3BD6BC55&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624523002 1624522972 30
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400001A6pg7478Sdg.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7379ED64B21FE549CEDC4B5B94253230653667DC833ED7F29327D4C4F4F88F4ADDBFDF86864A776AC5166D9A0C5F29447E48CDB1AD01152C&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624523263 1624523233 30
+192.168.11.158 isure6.stream.qqmusic.qq.com/O4000029tedg3Kl1s2.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=9D3CDA1010E7CAC1CD971BA9198DBC9825A2A0221E3266F2E0334092CD0FE81095AE15B9B10969B497F4E229B9AB16CA42872FCBB8CDA8FD&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624523469 1624523415 54
+192.168.11.216 182.254.52.51/amobile.music.tc.qq.com 182.254.52.51 1624523524 1624523508 16
+192.168.11.69 www.zhouheiya.cn/wcs www.zhouheiya.cn 1624524298 1624524291 7
+192.168.11.69 www.zhouheiya.cn/wcs www.zhouheiya.cn 1624524298 1624524291 7
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624528979 1624528975 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624529446 1624529425 21
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624529695 1624529691 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624529883 1624529881 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624530414 1624530410 4
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624843858 1624843847 11
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624843866 1624843847 19
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624846613 1624846587 26
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857414 1624857386 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857414 1624857386 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857414 1624857386 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857433 1624857386 47
+192.168.11.130 live-s3m.mediav.com/nativevideo adgoo.cn 1624862239 1624862234 5
+192.168.11.130 200.200.200.200:8081/IXCa9ae23103902d07f13051cd669c78b31 adgoo.cn 1624862239 1624862234 5
+192.168.11.130 200.200.200.200:8081/IXC3a56ddb1e8db1666a16464cfe843a1f3 adgoo.cn 1624862239 1624862234 5
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624864619 1624864613 6
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624864619 1624864613 6
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624864619 1624864613 6
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866474 1624866416 58
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866474 1624866416 58
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866547 1624866544 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866580 1624866544 36
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866863 1624866814 49
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624869953 1624869942 11
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624870020 1624870002 18
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624870622 1624870632 -10
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624873277 1624873276 1
+192.168.11.190 200.200.200.200/IXC3bb3f6a4130fcc7b3a87d277b2662577 106.120.158.152 1627523316 1627523315 1
+192.168.11.151 200.200.200.200/IXCb443a6815b71438cfbdf2865f64f898b 106.120.158.146 1627539384 1627539386 -2
+192.168.11.151 200.200.200.200/IXCb723dc45e1c731a0c2bbc3d7e1945861 106.120.158.146 1627539396 1627539386 10
+192.168.11.151 200.200.200.200/IXCa37c17ab35686d02f4f5345db383fb77 106.120.158.146 1627539516 1627539507 9
+192.168.11.151 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a 106.120.158.146 1627539577 1627539569 8
+192.168.11.151 200.200.200.200/IXCccbb89cf68587c0d7de343777d2a5d60 106.120.158.146 1627539814 1627539798 16
+192.168.11.151 200.200.200.200/IXC06c02cb20652aab439c51be332934e73 106.120.158.146 1627539995 1627539975 20
+192.168.11.151 200.200.200.200/IXC0de740306065478168cb5f58472dd59f 106.120.158.154 1627540336 1627540280 56
+192.168.11.151 200.200.200.200/IXC0de740306065478168cb5f58472dd59f 106.120.158.154 1627540354 1627540295 59
+192.168.11.151 200.200.200.200/IXCff86964f3bf502a3e5bdc1b2236150d2 106.120.158.154 1627540351 1627540295 56
+192.168.11.151 200.200.200.200/IXCd74f3e29e9d115910c31542ea5951f91 106.120.158.154 1627540499 1627540478 21
+192.168.11.151 200.200.200.200/IXC881b20ef97252987c4831c9bb07ff180 106.120.158.154 1627540963 1627540941 22
+192.168.11.151 200.200.200.200/IXCc075bad8b879001ea54f7b3cab11493f 106.120.158.154 1627541651 1627541633 18
+192.168.11.151 200.200.200.200/IXC0dc1a2114568de42a948a0acd7826ee6 106.120.158.152 1627541903 1627541857 46
+192.168.11.151 200.200.200.200/IXCebb9842e8fe1a19175bfec83714d6454 106.120.158.152 1627542161 1627542102 59
+192.168.11.151 200.200.200.200/IXCb3bd9f3b612ec39e4cc17b0a8e991914 106.120.158.152 1627542594 1627542562 32
+192.168.11.151 200.200.200.200/IXC5df2418661523083e7e5f1259121f6a3 106.120.158.152 1627543098 1627543058 40
+192.168.11.151 200.200.200.200/IXC1c86258aef52d6c9c6376b0df93bd26a 106.120.158.152 1627543406 1627543384 22
+192.168.11.186 gvideo.qpic.cn/0bf2amaaaaaatyah3qxwwnqfaa6daabqaaaa.f10002.mp4?dis_k=d7e82be921c3634797126ca1c0e84e2b&dis_t=1627543654 game.weixin.qq.com 1627551826 1627551824 2
+192.168.11.186 gvideo.qpic.cn/0b78xuaagaaakyallrxorjqfbpodao6qaaya.f10002.mp4?dis_k=10a43bbe994c5ca0bde41081d9ee2f3b&dis_t=1627543654 game.weixin.qq.com 1627551826 1627551824 2
+192.168.11.186 gvideo.qpic.cn/0bf2u4aboaaaaiaa4mabvzqvbj6dc6tqafya.f10002.mp4?dis_k=b71920a7afe726223815ef6ef1e345d4&dis_t=1627543556 game.weixin.qq.com 1627551826 1627551824 2
+192.168.11.215 ws.stream.qqmusic.qq.com/O600002asUjN02Veo2.ogg?guid=FC846A3269FF7EDEED22673B6DB50B27&vkey=1DB858CFC346CAF7718E3E6200EE3BAADD067E7893570DD0C7AD17B9ED61394BAFECE7900C6593D566D23088C5A2F3AC4F1FBAA0ABBF35F9&uin=940158620&fromtag=77 ws.stream.qqmusic.qq.com 1627572913 1627572911 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624530740 1624530735 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624531025 1624531021 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624531797 1624531793 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624532294 1624532289 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624532779 1624532774 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624533776 1624533775 1
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624534334 1624534332 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624534911 1624534909 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535194 1624535187 7
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535403 1624535401 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535600 1624535595 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535861 1624535815 46
+192.168.11.130 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624687702 1624687701 1
+192.168.11.130 200.200.200.200:8081/IXC1b38c6e3dd4a085fd62e976a042e5628 www.adgoo.cn 1624687702 1624687701 1
+192.168.11.223 images.sohu.com/saf news.sohu.com 1624324549 1624324530 19
+192.168.11.72 200.200.200.200:8081/IXCdc182192a487f74dc3e42739eb30978e www.adgoo.cn 1624339023 1624339014 9
+192.168.11.72 200.200.200.200:8081/IXCf4b606d1e32e436f40d88160af85ea87 www.adgoo.cn 1624339042 1624339014 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624349868 1624349814 54
+192.168.11.186 fc-transvideo.baidu.com/9b586585b4ede831848b7ccb5169c659.mp4 m.baidu.com 1624366555 1624366551 4
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1627259556 1627259554 2
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627283845 1627283837 8
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627283864 1627283837 27
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291308 1627291303 5
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291314 1627291303 11
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291332 1627291303 29
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291348 1627291303 45
+192.168.11.59 livews-hls.5club.cctv.cn/hls api.cctv.cn 1627294343 1627294324 19
+192.168.11.59 livews-hls.5club.cctv.cn/hls api.cctv.cn 1627294352 1627294324 28
+192.168.11.140 v.itheima.com/%E5%A4%A7%E6%95%B0%E6%8D%AE yun.itheima.com 1627306640 1627306606 34
+192.168.11.140 v.itheima.com/%E5%A4%A7%E6%95%B0%E6%8D%AE yun.itheima.com 1627306640 1627306606 34
+192.168.11.109 www.306.cn/upload www.306.cn 1625535007 1625534979 28
+192.168.11.121 ws6.stream.qqmusic.qq.com/O6000039KumX2TAabS.ogg?guid=ffffffffcb6ff278000001766f0b8661&vkey=B0BEF63DAEE26847D1EA07DE267371D1AFA19D80E3608B87E4C93501CB7AD4935051A30A51D4888AD7BC2B145F1B02CB158AB69C388B83D9&uin=2495348953&fromtag=129 ws6.stream.qqmusic.qq.com 1625540045 1625540016 29
+192.168.11.193 200.200.200.200:8081/IXC50d5f3ce3e8bd44f45e2b72d0e443fcc www.adgoo.cn 1625540088 1625540083 5
+192.168.11.193 200.200.200.200:8081/IXCe2eedefff41176434234780c0a7ecc7c www.adgoo.cn 1625540094 1625540083 11
+192.168.11.121 200.200.200.200/IXC095d2715b8d4d7b363198c3028f2bb4b ws6.stream.qqmusic.qq.com 1625540106 1625540070 36
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625551635 1625551625 10
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625551635 1625551625 10
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625556457 1625556453 4
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625557880 1625557844 36
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625557892 1625557844 48
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625557895 1625557876 19
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558067 1625558060 7
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558067 1625558060 7
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558172 1625558177 -5
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558172 1625558177 -5
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558746 1625558722 24
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625558827 1625558826 1
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558894 1625558889 5
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559204 1625559176 28
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559403 1625559401 2
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559591 1625559587 4
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558288 1625558254 34
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558288 1625558254 34
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558430 1625558437 -7
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558430 1625558437 -7
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559784 1625559728 56
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559978 1625559956 22
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625560208 1625560206 2
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625560377 1625560361 16
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625560574 1625560566 8
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625562371 1625562370 1
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625557625 1625557625 0
+192.168.11.228 60.6.199.145/amobile.music.tc.qq.com 60.6.199.145 1634265374 1634265372 2
+192.168.11.102 isure.stream.qqmusic.qq.com/F0M0003LnSNo1ecdc3.mflac?guid=B0DA0854A4D62464008E6B2598D42626&vkey=EAEB47F5E8FCC284F9DB5AAAB26F69BF45CEFC61D2CB16DB5FA22BE2573D05EE85FF94C33EABFC6045C77AF6DFB5E7B8DEF7162C9261F915&uin=2996816019&fromtag=80 isure.stream.qqmusic.qq.com 1634265921 1634265921 0
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266332 1634266319 13
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266336 1634266319 17
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266358 1634266319 39
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266640 1634266582 58
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627318642 1627318636 6
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1627347420 1627347419 1
+192.168.11.176 200.200.200.200:8081/IXCf880c1790dec39c1213e17f0be22ca28 adgoo.cn 1627347518 1627347515 3
+192.168.11.176 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1627347518 1627347515 3
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627351147 1627351123 24
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627351125 1627351123 2
+192.168.11.59 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1627351125 1627351123 2
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627352332 1627352279 53
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627352741 1627352738 3
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627352962 1627352949 13
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353226 1627353222 4
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353426 1627353418 8
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353665 1627353648 17
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353887 1627353883 4
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627354636 1627354609 27
+192.168.11.59 ws.stream.qqmusic.qq.com/O600000OwJP23Cc7iV.ogg?guid=1d80a75b82ad4254488bdb4f2b25fc21f825711b&vkey=9D7C470770227338AC7EA31D8D869F77109EF167246613555E04EDF4DA69702D9E7BEA03FA6805EDCC1CDF5D6D82974AA0D9BE9794DC9149&uin=1152921504815163542&fromtag=999 ws.stream.qqmusic.qq.com 1627355524 1627355520 4
+192.168.11.59 ws.stream.qqmusic.qq.com/O600000OwJP23Cc7iV.ogg?guid=1d80a75b82ad4254488bdb4f2b25fc21f825711b&vkey=9D7C470770227338AC7EA31D8D869F77109EF167246613555E04EDF4DA69702D9E7BEA03FA6805EDCC1CDF5D6D82974AA0D9BE9794DC9149&uin=1152921504815163542&fromtag=999 ws.stream.qqmusic.qq.com 1627355524 1627355520 4
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627356830 1627356822 8
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627356836 1627356822 14
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627356845 1627356822 23
+192.168.11.152 200.200.200.200:8081/IXCfc525d8114a8422729e809fbf00dafe1 music.163.com 1627369709 1627369689 20
+192.168.11.152 200.200.200.200:8081/IXCfecf5c5ec4b4f35478612db0ed82e64c music.163.com 1627369709 1627369689 20
+192.168.11.152 200.200.200.200:8081/IXCdcc432213c3f298b53e46b4565cdcede music.163.com 1627369709 1627369689 20
+192.168.11.152 iadmusicmat.music.126.net/3103fee3065e432fa331fda06f3a1309.mp4 music.163.com 1627369710 1627369689 21
+192.168.11.152 iadmusicmat.music.126.net/46052f1caac248c295e9c1eb2246455c.mp4 music.163.com 1627369715 1627369689 26
+192.168.11.152 iadmusicmatvideo.music.126.net/e562b2cc84ab416c85c592f63bc9a3c1.mp4 music.163.com 1627369737 1627369689 48
+192.168.11.152 iadmusicmatvideo.music.126.net/865b70aa1ee64df9bb9b2cf0370d7734.mp4 music.163.com 1627369746 1627369689 57
+192.168.11.103 live-s3m.mediav.com/nativevideo adgoo.cn 1627378065 1627378036 29
+192.168.11.117 vd3.bdstatic.com/mda-mftcskyi72nzetyx baijiahao.baidu.com 1624929747 1624929697 50
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624932277 1624932268 9
+192.168.11.192 www.gov.cn/govweb www.gov.cn 1624934001 1624933979 22
+192.168.11.192 www.gov.cn/govweb www.gov.cn 1624934466 1624934465 1
+192.168.11.192 200.200.200.200:8081/IXC23c71d71b2980d3c6c9aaf3617d2f0f2 www.ruoyi.vip 1624936646 1624936603 43
+192.168.11.192 200.200.200.200:8081/IXC23c71d71b2980d3c6c9aaf3617d2f0f2 ruoyi.vip 1624936750 1624936749 1
+192.168.11.192 200.200.200.200:8081/IXC23c71d71b2980d3c6c9aaf3617d2f0f2 ruoyi.vip 1624936759 1624936749 10
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624936873 1624936864 9
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624940035 1624940034 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624941045 1624941040 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624942080 1624942078 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624942790 1624942785 5
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624943070 1624943068 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624943070 1624943068 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624943075 1624943068 7
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624943290 1624943288 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624943555 1624943553 2
+192.168.11.171 fundact.eastmoney.com/banner finance.eastmoney.com 1624946333 1624946332 1
+192.168.11.216 v.bootstrapmb.com/2019 v.bootstrapmb.com 1624948280 1624948237 43
+192.168.11.216 v.bootstrapmb.com/2019 v.bootstrapmb.com 1624948280 1624948237 43
+192.168.11.216 v.bootstrapmb.com/2019 v.bootstrapmb.com 1624948280 1624948237 43
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624948824 1624948779 45
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624949033 1624949032 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624949832 1624949831 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624950013 1624950007 6
+192.168.11.194 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624952154 1624952149 5
+192.168.11.194 isure.stream.qqmusic.qq.com/O6000048k3IF3ZRn93.ogg?guid=4599e3108d9ed57935ccc37ab5f8d8a882a0d02c&vkey=FB3DF33A3C9614C09D5C7A478567213645DAE6EDADB9E9A0D1299E418724ACABF96194362CDC23BCB369DA5976ADAF81A19A1B629EFB101C&uin=1010997598&fromtag=999 isure.stream.qqmusic.qq.com 1624952154 1624952149 5
+192.168.11.194 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624952185 1624952149 36
+192.168.11.194 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624954799 1624954793 6
+192.168.11.72 live-s3m.mediav.com/nativevideo adgoo.cn 1624975393 1624975345 48
+192.168.11.72 200.200.200.200:8081/IXC29106419759a8fb887e6a4c22ec27de9 adgoo.cn 1624975399 1624975345 54
+192.168.11.121 m701.music.126.net/20210708105155 9kuq.ttgykj.cn 1625711224 1625711220 4
+192.168.11.121 m701.music.126.net/20210708105211 9kuq.ttgykj.cn 1625711242 1625711220 22
+192.168.11.121 m10.music.126.net/20210708105103 9kuq.ttgykj.cn 1625711177 1625711155 22
+192.168.11.121 m701.music.126.net/20210708105618 9kuq.ttgykj.cn 1625711491 1625711483 8
+192.168.11.121 m10.music.126.net/20210708105709 9kuq.ttgykj.cn 1625711555 1625711500 55
+192.168.11.121 m10.music.126.net/20210708105742 9kuq.ttgykj.cn 1625711571 1625711530 41
+192.168.11.121 m701.music.126.net/20210708105747 9kuq.ttgykj.cn 1625711577 1625711530 47
+192.168.11.236 200.200.200.200:8081/IXC6d7bc4835308c1d9346cc8a78134f94c www.adgoo.cn 1625720389 1625720379 10
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625736593 1625736579 14
+192.168.11.236 200.200.200.200:8081/IXC3314248d5d422d343095d21e6e219efd www.adgoo.cn 1625736612 1625736579 33
+192.168.11.115 646-3-2.vod.tv.itc.cn/sohu biznews.sohu.com 1625750714 1625750655 59
+192.168.11.68 200.200.200.200:8081/IXC23d7c7e0f3c53280928269201e4a4a42 www.adgoo.cn 1628008054 1628008040 14
+192.168.11.68 200.200.200.200:8081/IXC1bac3a54af6394188a5ea9ecbc94eb3a www.adgoo.cn 1628008063 1628008040 23
+192.168.11.68 200.200.200.200:8081/IXCd2354bdaf2e009220ade6ca2a711976f www.adgoo.cn 1628008075 1628008040 35
+192.168.11.68 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 www.adgoo.cn 1628008093 1628008040 53
+192.168.11.68 200.200.200.200:8081/IXC35650296cdc8d44e2f4d227b1154adfd www.adgoo.cn 1628045858 1628045840 18
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628045867 1628045840 27
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056281 1628056229 52
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056284 1628056229 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056315 1628056258 57
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056315 1628056258 57
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056324 1628056266 58
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056324 1628056266 58
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056348 1628056290 58
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628056649 1628056639 10
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628056656 1628056639 17
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059261 1628059245 16
+192.168.11.68 200.200.200.200:8081/IXCb4e13055ea4674a378706fcd4be5df1a www.terra-it.cn 1628059255 1628059245 10
+192.168.11.68 200.200.200.200:8081/IXC04afdc5c40c1f2ce3284296a90f09264 www.terra-it.cn 1628059285 1628059245 40
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059285 1628059245 40
+192.168.11.68 200.200.200.200:8081/IXCffd5fbb0ca67dcce704c98df51671541 www.terra-it.cn 1628059408 1628059398 10
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059423 1628059398 25
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059304 1628059245 59
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059319 1628059259 60
+192.168.11.68 200.200.200.200:8081/IXC5e2c597557f3225e522710b70f17cf70 www.terra-it.cn 1628059396 1628059398 -2
+192.168.11.68 200.200.200.200:8081/IXC9cf00ae8d0ac23c8773b20f828e78451 www.terra-it.cn 1628059500 1628059442 58
+192.168.11.68 200.200.200.200:8081/IXC9cf00ae8d0ac23c8773b20f828e78451 www.terra-it.cn 1628059500 1628059442 58
+192.168.11.68 200.200.200.200:8081/IXCb4e13055ea4674a378706fcd4be5df1a www.terra-it.cn 1628059500 1628059442 58
+192.168.11.68 200.200.200.200:8081/IXCb4e13055ea4674a378706fcd4be5df1a www.terra-it.cn 1628059500 1628059442 58
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628072133 1628072130 3
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628077961 1628077957 4
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628078283 1628078282 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628078569 1628078567 2
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628078793 1628078792 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079036 1628079035 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079343 1628079339 4
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079614 1628079613 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079838 1628079833 5
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628080123 1628080122 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628080320 1628080319 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628080542 1628080541 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628081054 1628081052 2
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628081321 1628081319 2
+192.168.11.141 hlsflv-liveshow.bdstatic.com/live live.baidu.com 1624410877 1624410874 3
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400001UoPdq1zxbAk.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=CAB9DB58BD79372A7ECD815BBE0A128107243B79100A9E4E732F274A56952AB33C15F79A8139E841F6DF666A2DBA4D6A1254685A330AFF5C&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624412785 1624412728 57
+192.168.11.72 v2.dakang-energy.com/syjpc www.diezhan.me 1624413067 1624413053 14
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624413378 1624413361 17
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624413580 1624413566 14
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624413795 1624413779 16
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624414008 1624414007 1
+192.168.11.158 153.0.197.28/amobile.music.tc.qq.com 153.0.197.28 1624414217 1624414207 10
+192.168.11.158 153.0.197.28/amobile.music.tc.qq.com 153.0.197.28 1624414416 1624414400 16
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624414646 1624414605 41
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624414914 1624414861 53
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624415611 1624415608 3
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624415611 1624415608 3
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624415611 1624415608 3
+192.168.11.236 www.nmgshkxzzs.com/template www.nmgshkxzzs.com 1624415768 1624415758 10
+192.168.11.158 123.6.104.46/amobile.music.tc.qq.com 123.6.104.46 1624416247 1624416227 20
+192.168.11.158 27.221.15.157/amobile.music.tc.qq.com 27.221.15.157 1624416496 1624416482 14
+192.168.11.158 27.221.15.157/amobile.music.tc.qq.com 27.221.15.157 1624416665 1624416663 2
+192.168.11.158 123.6.104.49/amobile.music.tc.qq.com 123.6.104.49 1624417949 1624417939 10
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400003TrlI84BcfSN.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7C2A53CEDAE5D6B019D605815AB80E74EA20A7A19FE01F1F6F2CAA8FEC29F754D192105A53C271FCA8CD806EDE31A2A2B7FFB4276B5854AF&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624418247 1624418198 49
+192.168.11.158 isure6.stream.qqmusic.qq.com/O600003ihVqM1v2Nhg.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7E2A823E6FFF9C9E096DD3FB31B3A0B22322F0836F903E93DEDB6992C48512FD2048E5423388BFAB29EC1D4A2BBEA1881420A38C785B1922&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624418490 1624418472 18
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400000dBhCW1lSSf0.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=FD83F980D44D9F59B4D5952F7D28FC0B8D2F693741C18A124823B2E1359AFA3FC44014E0835FD8D579962D15B8FE36F7D81312B11C5A9576&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624418717 1624418681 36
+192.168.11.158 isure6.stream.qqmusic.qq.com/O4000019Jeoh4NOyKC.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=0D8851635FFD08B3FB50A1B4D9090E086BD3660FCD58DCA33D59B5CEFEB245751F983B3ABCD57644228463D0E052FE90E1FE461177C055FE&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624419417 1624419398 19
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400001ln6zI1BKDm8.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=534C2082FD3B6CDCEACA8A1D1AD3EA96EF8369230D4CF7FA92A6A4CADF0C0F9ADF65DF9DB887E84AA51AEE8D7875EDBD4BEF967A35DDD6D9&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624419599 1624419584 15
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400004ZbfIW0Yyf5I.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=52C7F24B3889F9663AFF19EC0AB584D3762E9194F3CD8ACA5AC732B13C679A39FD7016B308061EB40FC87A69858264A2D29EE39AD7865398&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624419746 1624419744 2
+192.168.11.121 61.179.119.147/amobile.music.tc.qq.com 61.179.119.147 1624423518 1624423527 -9
+192.168.11.121 61.179.119.144/amobile.music.tc.qq.com 61.179.119.144 1624424806 1624424784 22
+192.168.11.236 200.200.200.200:8081/IXC3f467549b7bf7f311c3d9fb40655dc55 www.adgoo.cn 1624431649 1624431641 8
+192.168.11.69 200.200.200.200/IXC82efdd473679d955984cf36ddf435c37 isure6.stream.qqmusic.qq.com 1624442446 1624442415 31
+192.168.11.215 ws.stream.qqmusic.qq.com/O600002FgoAR2TXaqd.ogg?guid=FC846A3269FF7EDEED22673B6DB50B27&vkey=CCFEB5FCF4DDFB4A32515FB2D40415460CA2E843C13DFC3F57111FDFBE623A486D03E5FD1C42F2FE68BA043F9BB5108B079F143847D608C9&uin=940158620&fromtag=77 ws.stream.qqmusic.qq.com 1627573880 1627573879 1
+192.168.11.215 ws.stream.qqmusic.qq.com/RS02000pJMah3cPHQw.mp3?guid=FC846A3269FF7EDEED22673B6DB50B27&vkey=AA5EB2B8DCFF3F3F9671EE76DD0061A75C0235D697741727F71A995592BE6B622160DB3E7E718E23F26DC22E838F0A529B2F969E1AC85D0B&uin=940158620&fromtag=83 ws.stream.qqmusic.qq.com 1627575180 1627575179 1
+192.168.11.215 200.200.200.200/IXC91186ae89ce6c638187d71868a66ccae ws.stream.qqmusic.qq.com 1627575432 1627575431 1
+192.168.11.68 stuff.cdn.biddingx.com/upload www.adgoo.cn 1627575438 1627575436 2
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627575438 1627575436 2
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.68 200.200.200.200:8081/IXC23d7c7e0f3c53280928269201e4a4a42 www.adgoo.cn 1627403240 1627403235 5
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627458304 1627458260 44
+192.168.11.176 ysf.nosdn.127.net/webapi 1627464457 1627464397 60
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584302 1624584297 5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584453 1624584452 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584474 1624584452 22
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584560 1624584559 1
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624536282 1624536283 -1
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624586431 1624586425 6
+192.168.11.228 www.mybuaa.com/static www.mybuaa.com 1624589540 1624589480 60
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624597257 1624597229 28
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624601769 1624601763 6
+192.168.11.74 200.200.200.200:8081/IXC2e64b47a988838935319a66266ec43d3 www.adgoo.cn 1626917619 1626917615 4
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626922998 1626922970 28
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923004 1626922970 34
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923004 1626922970 34
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923004 1626922970 34
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923010 1626922970 40
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923010 1626922970 40
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923028 1626922970 58
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923274 1626923260 14
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923314 1626923263 51
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923314 1626923263 51
+192.168.11.152 iadmusicmatvideo.music.126.net/b9596be35bc344e18120f789b9461f69.mp4 music.163.com 1626927777 1626927783 -6
+192.168.11.152 iadmusicmatvideo.music.126.net/158159623d634a5baecf867bf3b77292.mp4 music.163.com 1626927795 1626927783 12
+192.168.11.152 iadmusicmatvideo.music.126.net/865b70aa1ee64df9bb9b2cf0370d7734.mp4 music.163.com 1626927813 1626927783 30
+192.168.11.152 iadmusicmatvideo.music.126.net/1440f47638fe40a986c77530241837f2.mp4 music.163.com 1626927835 1626927783 52
+192.168.11.152 iadmusicmatvideo.music.126.net/e562b2cc84ab416c85c592f63bc9a3c1.mp4 music.163.com 1626927902 1626927895 7
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930216 1626930179 37
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930222 1626930179 43
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930216 1626930179 37
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930222 1626930179 43
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930234 1626930179 55
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930296 1626930300 -4
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930305 1626930300 5
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930311 1626930300 11
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930311 1626930300 11
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930335 1626930300 35
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930348 1626930300 48
+192.168.11.117 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1626935295 1626935288 7
+192.168.11.117 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1626935295 1626935288 7
+192.168.11.117 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1626935295 1626935288 7
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939548 1626939499 49
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939554 1626939499 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939610 1626939583 27
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939631 1626939583 48
+192.168.11.152 www.12371.cn/special www.12371.cn 1626939708 1626939665 43
+192.168.11.152 www.12371.cn/special www.12371.cn 1626939708 1626939665 43
+192.168.11.152 iadmusicmatvideo.music.126.net/0271915cf8044321821fc3549852fddc.mp4 music.163.com 1626946025 1626945990 35
+192.168.11.152 iadmusicmat.music.126.net/d23f8aef3e974b2ca8fcb99be300fe16.mp4 music.163.com 1626946047 1626945990 57
+192.168.11.152 200.200.200.200:8081/IXCd4e496a6970a1bf9ff0373ed191df558 music.163.com 1626946068 1626946024 44
+192.168.11.152 iadmusicmatvideo.music.126.net/b9596be35bc344e18120f789b9461f69.mp4 music.163.com 1626946142 1626946144 -2
+192.168.11.152 iadmusicmatvideo.music.126.net/c339b636279847e081dc7da0964c8cd9.mp4 music.163.com 1626946203 1626946144 59
+192.168.11.152 iadmusicmatvideo.music.126.net/1440f47638fe40a986c77530241837f2.mp4 music.163.com 1626946249 1626946254 -5
+192.168.11.152 iadmusicmatvideo.music.126.net/6431efa8bc004488ad0bdb7e946ea1aa.mp4 music.163.com 1626946160 1626946144 16
+192.168.11.176 m10.music.126.net/20210722191219 wx.atriumlee.com 1626950819 1626950814 5
+192.168.11.176 uclient.yunque360.com/audio uclient.yunque360.com 1626950819 1626950817 2
+192.168.11.176 uclient.yunque360.com/audio uclient.yunque360.com 1626950819 1626950817 2
+192.168.11.152 iadmusicmatvideo.music.126.net/a7120c3abd1947988b1db9cc978179e6.mp4 music.163.com 1626962499 1626962477 22
+192.168.11.152 200.200.200.200:8081/IXCfecf5c5ec4b4f35478612db0ed82e64c music.163.com 1626962524 1626962477 47
+192.168.11.152 200.200.200.200:8081/IXC7ec5550e16cfbf3525cb9d0c9e1b0eb2 music.163.com 1626962545 1626962533 12
+192.168.11.152 200.200.200.200:8081/IXCd4e496a6970a1bf9ff0373ed191df558 music.163.com 1626962567 1626962533 34
+192.168.11.152 200.200.200.200:8081/IXC313494517c114496bcff2e4b841f2ba8 music.163.com 1626962591 1626962533 58
+192.168.11.152 iadmusicmatvideo.music.126.net/e562b2cc84ab416c85c592f63bc9a3c1.mp4 music.163.com 1626962659 1626962653 6
diff --git a/src/main/resources/video_data.properties b/src/main/resources/video_data.properties index e7a25f9..1d448a4 100644 --- a/src/main/resources/video_data.properties +++ b/src/main/resources/video_data.properties @@ -4,7 +4,19 @@ kafka.avc.topic = AV-EVENT-COMPLETED-LOG kafka.av.topic = AV-EVENT-LOG # 时间窗口 -interval = 22 +# interval = 23 +intervalLeft = 60 +intervalRight = 15 # Spark地址 -Spark.master=192.168.10.9:7077
\ No newline at end of file +Spark.master=spark://192.168.10.9:7077 +# prefix算法的置信度 +prefixConfidence=0.3 +# 用于数据挖掘的历史时间,当前时间-最长间隔=最早使用的历史日志,注意这里的单位为天 +historyTrafficInterval=90 +# 候选集最大容量 +volume=10 +# Redis候选表中的过期时间,单位为天 +ExpirationTime=1 +# 最少进行序列挖掘的记录数目 +leastHistoryNum=5
\ No newline at end of file diff --git a/src/test/java/cn/ac/iie/mining/MiningServiceTest.java b/src/test/java/cn/ac/iie/mining/MiningServiceTest.java new file mode 100644 index 0000000..06bfca4 --- /dev/null +++ b/src/test/java/cn/ac/iie/mining/MiningServiceTest.java @@ -0,0 +1,120 @@ +package cn.ac.iie.mining; + +import cn.ac.iie.Utils.JedisPoolUtils; +import cn.ac.iie.Utils.SqlSessionFactoryUtils; +import cn.ac.iie.Utils.URLHandleUtils; +import cn.ac.iie.config.GetConf; +import cn.ac.iie.mapper.AVDataListMapper; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.apache.ibatis.session.SqlSession; +import org.apache.kafka.clients.consumer.ConsumerConfig; +import org.apache.kafka.clients.consumer.ConsumerRecord; +import org.apache.kafka.clients.consumer.ConsumerRecords; +import org.apache.kafka.clients.consumer.KafkaConsumer; +import org.junit.Test; +import redis.clients.jedis.Jedis; + +import java.time.Duration; +import java.util.Arrays; +import java.util.Properties; + + +public class MiningServiceTest { + @Test + public void consumeKafka() { + Properties properties=new Properties(); + properties.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); + properties.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); + properties.put("bootstrap.servers", GetConf.BOOTSTRAP_SERVERS); + properties.put(ConsumerConfig.GROUP_ID_CONFIG, "test"); + + // max.poll.records设置的条数要在一定的时间间隔处理完 + properties.put("max.poll.records", 50); + // 自动提交 + properties.put("enable.auto.commit", "false"); + // 测试的时候设置为从头开始 + properties.put("auto.offset.reset", "earliest"); + + KafkaConsumer<String,String> consumer=new KafkaConsumer<>(properties); + consumer.subscribe(Arrays.asList(GetConf.KAFKA_AV_TOPIC)); + + try { + ObjectMapper objectMapper = new ObjectMapper(); + + // 在小数据规模下,不需要用set来去重,记录上一个记录就可以了 + String prevHost = ""; + + // 拉取消息并消费 + for (int i = 0; i < 30; i++) { + ConsumerRecords<String,String> records=consumer.poll(Duration.ofMillis(1000)); + for (ConsumerRecord<String,String> record:records){ + JsonNode jsonNode = objectMapper.readTree(record.value()); + + // 查找有数据的部分 + JsonNode urlNode = jsonNode.get("url"); + if (jsonNode.get("dir").asInt() == 2 || urlNode == null) + continue; + String urlPath = URLHandleUtils.getFirstURLPath(urlNode.asText()); + if (prevHost.equals(urlPath)) + continue; + prevHost = urlPath; + + // 交给查询模块进行处理 + System.out.println(urlPath); + } + consumer.commitSync(); + } + } catch (Exception e) { + e.printStackTrace(); + }finally { + consumer.close(); + } + } + + String urlPath = "test.com"; + + @Test + public void judgeKey() { + JedisPoolUtils.getJedisPoolInstance(); + Jedis jedis = JedisPoolUtils.getJedis(); + if (jedis.exists(urlPath)) { + // 存在的话再判断一下时间过期没有 + long writeTime = Long.parseLong(jedis.hget(urlPath, "write_time")); + long nowTime = System.currentTimeMillis()/1000L; + long earlyMorning3 = nowTime - (nowTime + 8 * 3600) % 86400 - 86400 * 2; + if (earlyMorning3 > writeTime) { + // 序列挖掘 + //sequenceMining(urlPath); + System.out.println("需要进行序列挖掘"); + } + else { + System.out.println(String.format("不需要进行序列挖掘,上次的时间为%s", writeTime)); + } + } + JedisPoolUtils.releaseResource(jedis); + } + + @Test + public void isMore10() { + AVDataListMapper avListMapper; + SqlSession sqlSession = SqlSessionFactoryUtils.getSqlSessionFactory().openSession(); + avListMapper = sqlSession.getMapper(AVDataListMapper.class); + String likeUrl = '%' + urlPath + '%'; + long effectiveTime = System.currentTimeMillis()/1000L - 3000000; + int cnt = avListMapper.cumulativeData(likeUrl, effectiveTime); + System.out.println(cnt); + } + + @Test + public void sequenceMining() { + } + + @Test + public void relateHostMiningTask() { + } + + @Test + public void buildCandidate() { + } +}
\ No newline at end of file diff --git a/target/.DS_Store b/target/.DS_Store Binary files differindex aa68815..571124d 100644 --- a/target/.DS_Store +++ b/target/.DS_Store diff --git a/target/classes/cn/ac/iie/mapper/AVDataListMapper.xml b/target/classes/cn/ac/iie/mapper/AVDataListMapper.xml index 86da199..9df7097 100644 --- a/target/classes/cn/ac/iie/mapper/AVDataListMapper.xml +++ b/target/classes/cn/ac/iie/mapper/AVDataListMapper.xml @@ -15,26 +15,28 @@ from `av_event_log_local` </select> + <!--在大数据量场景下,这里可能需要加limit--> <select id="getRelationListWithHost" resultType="cn.ac.iie.pojo.TrafficLog"> - select common_client_ip, common_client_port, common_server_ip, common_server_port, common_recv_time, + select common_client_ip, common_server_ip, common_start_time, http_url, http_host, http_domain, ssl_sni, ssl_cn from `connection_record_log_local` - where common_start_time >= (#{found_time} - #{intervalTime}) - and common_start_time <= (#{found_time} + #{intervalTime}) + where common_start_time >= (#{found_time} - #{startInterval}) + and common_start_time <= (#{found_time} + #{endInterval}) and common_client_ip = #{client_ip} + and (common_schema_type='HTTP' or common_schema_type='SSL') </select> <select id="getAVListWithReferer" resultType="cn.ac.iie.pojo.AVlog"> - select client_ip, server_ip, url, referer, recv_time, found_time, expire_time + select client_ip, server_ip, url, domain(referer) as referer_host, recv_time, found_time, expire_time from `av_event_log_local` where length(referer) > 0 </select> <select id="getReferPortal" resultType="cn.ac.iie.pojo.TrafficLog"> - select common_client_ip, common_client_port, common_server_ip, common_server_port, common_recv_time, - common_start_time, http_url, http_host, http_domain, ssl_sni, ssl_cn + select common_client_ip, common_client_port, common_server_ip, common_server_port, + common_start_time, http_url, http_host, http_domain, ssl_sni from `connection_record_log_local` - where common_start_time >= (#{found_time} - 30) + where common_start_time >= (#{found_time} - 60) and common_start_time <= (#{found_time} + 10) and common_client_ip = #{client_ip} and (http_host = #{host} or ssl_sni = #{host}) @@ -47,15 +49,21 @@ </select> <select id="cumulativeData" resultType="Integer"> - select count(url) from `av_event_log_local` - where url like #{urlPath} and recv_time >= #{effectiveTime} + select count(url) + from `av_event_log_local` + where url like #{likeURL} and found_time >= #{effectiveTime} </select> <select id="getHistoryHost" resultType="cn.ac.iie.pojo.AVlog"> - select client_ip, server_ip, url, recv_time, found_time, expire_time + select client_ip, server_ip, url, found_time + from `av_event_log_local` + where url like #{likeURL} + order by found_time desc + limit 80 + </select> + <select id="getHostNeedMining" resultType="cn.ac.iie.pojo.AVlog"> + select client_ip, server_ip, url, found_time from `av_event_log_local` - where url like #{host} - order by recv_time desc - limit 100 + where found_time >= #{taskTime} </select> </mapper>
\ No newline at end of file diff --git a/target/classes/redis.properties b/target/classes/redis.properties index 89070ed..77d1dde 100644 --- a/target/classes/redis.properties +++ b/target/classes/redis.properties @@ -1,2 +1,2 @@ -redisHost=192.168.10.28 +redisHost=192.168.10.9 redisPort=6379
\ No newline at end of file diff --git a/target/classes/testSet.txt b/target/classes/testSet.txt new file mode 100644 index 0000000..a978018 --- /dev/null +++ b/target/classes/testSet.txt @@ -0,0 +1,1414 @@ +192.168.11.223 mp4.studyez.com/2014 www.studyez.com 1628325839 1628325828 11
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628267245 1628267239 6
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628267251 1628267239 12
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689527 1631689520 7
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689530 1631689520 10
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689534 1631689520 14
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689570 1631689520 50
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631689570 1631689520 50
+192.168.11.228 thepagesofavalon.com/lady_in_red.mid thepagesofavalon.com 1631691247 1631691243 4
+192.168.11.202 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1631692086 1631692083 3
+192.168.11.202 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1631692114 1631692084 30
+192.168.11.202 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1631692461 1631692460 1
+192.168.11.202 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1631692461 1631692460 1
+192.168.11.85 cdn-img.ludashi.com/web www.ludashi.com 1631696639 1631696628 11
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697791 1631697783 8
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697797 1631697783 14
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697800 1631697783 17
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631697812 1631697783 29
+192.168.11.109 ysf.nosdn.127.net/webapi www.shipinzhuanhuan.cn 1631697843 1631697834 9
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698052 1631698048 4
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698098 1631698048 50
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698132 1631698095 37
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698172 1631698181 -9
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631698187 1631698181 6
+192.168.11.55 www.gov.cn/govweb www.gov.cn 1634447979 1634447924 55
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204137 1627204131 6
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204132 1627204131 1
+192.168.11.112 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1627204132 1627204131 1
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204386 1627204382 4
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627204623 1627204617 6
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627205409 1627205406 3
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627205668 1627205667 1
+192.168.11.112 106.120.158.149/amobile.music.tc.qq.com 106.120.158.149 1627205793 1627205793 0
+192.168.11.59 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1627209821 1627209813 8
+192.168.11.112 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1627218785 1627218783 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627219467 1627219466 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627219571 1627219570 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627219774 1627219771 3
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627220010 1627219975 35
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627220189 1627220183 6
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627220447 1627220444 3
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627220665 1627220663 2
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627221264 1627221269 -5
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627221503 1627221451 52
+192.168.11.112 106.120.158.146/amobile.music.tc.qq.com 106.120.158.146 1627222357 1627222325 32
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222493 1627222491 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222555 1627222554 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222742 1627222741 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627222941 1627222940 1
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223086 1627223084 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223353 1627223351 2
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223436 1627223433 3
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627223838 1627223832 6
+192.168.11.112 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627224108 1627224108 0
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624035603 1624035596 7
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624040995 1624040993 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624046632 1624046627 5
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624046632 1624046627 5
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624046632 1624046627 5
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624051796 1624051793 3
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624062595 1624062593 2
+192.168.11.216 200.200.200.200:8081/IXC424559b98662bac2182a3c7b6c545362 www.adgoo.cn 1624084199 1624084193 6
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625017611 1625017594 17
+192.168.11.173 eversec.com.cn/When_the_Game_Stands_Tall.mp3 eversec.com.cn 1625036752 1625036703 49
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037188 1625037154 34
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037188 1625037154 34
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037188 1625037154 34
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037351 1625037307 44
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037351 1625037307 44
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625037351 1625037307 44
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625042548 1625042532 16
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625042548 1625042532 16
+192.168.11.106 zboss.ckcest.cn/record live.ckcest.cn 1625043012 1625043010 2
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634611843 1634611823 20
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634611849 1634611823 26
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634612114 1634612114 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634612358 1634612358 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634613151 1634613151 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634613401 1634613401 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634613621 1634613621 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634614241 1634614241 0
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634614733 1634614732 1
+192.168.11.102 175.21.254.34/amobile.music.tc.qq.com 175.21.254.34 1634614992 1634614992 0
+192.168.11.223 ysf.nosdn.127.net/webapi www.dailiantong.com 1631751940 1631751937 3
+192.168.11.187 106.120.158.148/amobile.music.tc.qq.com 106.120.158.148 1631763703 1631763651 52
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764609 1631764603 6
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764618 1631764603 15
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764621 1631764603 18
+192.168.10.197 159.226.95.84/register 159.226.95.84 1631764630 1631764603 27
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631764652 1631764603 49
+192.168.11.187 106.120.158.148/amobile.music.tc.qq.com 106.120.158.148 1631766965 1631766950 15
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631771943 1631771940 3
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631771958 1631771940 18
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631771964 1631771940 24
+192.168.11.163 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1631773856 1631773851 5
+192.168.11.152 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1631775359 1631775343 16
+192.168.11.152 182.254.52.25/amobile.music.tc.qq.com 182.254.52.25 1631775930 1631775928 2
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001OWRNc4RsDep.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=EA234235F7D68C31BE496863B31A307F9705754A3556E0CD4819B79DCAF77CCC2537939975A124CA55457DBE002C4C0C58FCB977E97A0617&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776772 1631776737 35
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003DLb2k3vlEGW.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=CD2BA7771A16BE411BAD6D9BCCDB4D3B410D63E14EAF0E5B1D0A1CEC4138F6995757C345FE00DF252BB0AFFB79ED5CBEBB3791D1ABAA3949&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776778 1631776737 41
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004KCeCQ4LFjir.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=4F4B89FD208C6D6CD3D5C294FE8AEE499A88194ED84B3B8900830AD85654F45CA56453A90DC0FB833A769C1E354820A071BA0AF2277ABF67&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776858 1631776857 1
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001GoYo41ZcXaD.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=ACA126F07C7221D25F55382D9051292F480BE605B90BB91C3CD247B214FEE12A161306744E88F179CA7F43A076C048F461DBE9DCB53D5BD3&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776864 1631776857 7
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004YOwMP0Rmq9e.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=81FE6B9E2A36FE61D887947AABE1ED8B722602FD24899072D6ACC557874006F36042516B37649310C4F7BC8753B5F0B19A244BBEB68FD3D4&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631776932 1631776918 14
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020044h10M4QtRPV.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=FFABAEEFB381A1A947367D0CA0795DF40B083C38390BAB4D97796F9211E7A181A5E2FD97BA41FEAFC9442F012D831D8C7ED37D3024CC4675&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777008 1631776978 30
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000pyrvu00PZig.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=7D1542CF6E7D9AC7D0C7665DC4741A44EC9D28B7C2AC5524027DB8F4BA6094C7EECB8EF37C3557C169097B09BDA909BAD3054D1CEB4A7686&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777113 1631777068 45
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004UDwIk1KrnxM.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=8016258A5F17C7F1A2495A287E6E48EAA9510F19C96D4583992CC59F2E67B7155B0495356EA0B2A5344CCC25B9E5047282BBDE7B946B7E05&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777180 1631777128 52
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02002oV3xt41zB5a.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=0F2AFF80754DD4D03A1FE55D374CBED191644C03D57405011EFBB1EB4ED1FF92E2791CF4639F83A34D6F91E5405ABBD079A202920E88DFD6&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777276 1631777248 28
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000N43WD2t03Cq.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=DF9926DDDCE5B28E9DF323D796E4B23CEEE1539741EFA3B0F0CA66A956F54B9F862CDF5700DCC61F17B1A761F241A0C52C78B42E3A62B7F2&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777322 1631777308 14
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003Hnkvd13lWq9.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=CD97CB7752959725D50017D81D3FC2FEF25B94FE2FC3931B7BF49E5A75A7D87032D4346124A51F65CE4497B7A2E006A1756B1DA826C80D16&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777389 1631777368 21
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004Bxr9m3ArSk7.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=7A3914A71BAE6743420E3BE9BE20FAF6702586216A121FA3E89035ABCB9AEF4DFB7D87927F31B66F67C546FB39624175E6CA57584E9E03A3&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777448 1631777429 19
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003oESxN1SWUBr.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=28262723DC3834E5D0D7E9CC817CC6A01576DD0BEA84037979107B5F000B2C98CA989CA17E5C93255EC896961AB4889F21A5F6E65F276F01&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777454 1631777429 25
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001749MW2bEKvY.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=DD7340DA91B5E0A5638441E179EB5D702FE62A581DBA243436F893137E8B41732A2E0CE970E7CDE13B5A74C3F4E8B75AB1DCD30A3CEE60F5&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777503 1631777488 15
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020003YmTa3rbPXP.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=4870F5555AC6D4D3D231A18A8F20F9E1E488DAE6AEA33DAFC2838C7538A8FC66C0741F61205B012DEAB1DBCA259B51540EAEC67C1D1634F0&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777570 1631777548 22
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000lz8lU32wxTg.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=904A218E9E722818C30B53C4893D1F0C3D029DA882A62D2CE65B9F442EE4B7356FB17A8B6B7DE3349B77C2C50D8A52DAA3AA7C14AAE99858&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777669 1631777668 1
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02000q52oF4FKK4G.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=059DB5E8CE5174A959C1E51D570EF1AF52A51716B2AD4403B8A37543B4430E60934EB31A3738332A8E7C52A5D4A617BCC65E2919B7E29F48&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777736 1631777728 8
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001ABDtK3heAM3.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=30E3704EBD984F2A5B8D5E48AD4B06D6E35521F8DF5B81CA3B7F3BB22E1531C536F3396179EE1256DB7C06FFFF0020B62B5F580B14D346F4&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777841 1631777788 53
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003qafiC2WCC8Y.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=1464FFA8D295292643F5D4ED65E2E6DEDE3EB702D9D6A01D93AC32160514B759304EE89E66A0BF645428A9804C225D0C10C4B5078956F167&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631777924 1631777908 16
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02004PJ2g54Hlmvo.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=EB425641A9AC6FE17A5CB87C3BF38B9682BFFF6AC63FCAE1A1E1F45D4A53D242EC3E1B87BE5CF7F602352B9A237CAFC98ACAE7AC58BA6EC6&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778022 1631777968 54
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02001BNiB60anlL2.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=F3504AD61358F75F5F008248189BD91A37A1372B252E69150F7496DEE3A2F0C7B6EA7774ED43B87649303DABB74897A93EC2D549258A295C&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778090 1631778088 2
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003ZVMpo0CpzBy.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=103506FBD34D2B6B11C17CACD9BCD0989E537B94D60955D21068ECFD241891317A84A10A2808403641D3A9958009C778CF959CC40C7FE0C6&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778166 1631778149 17
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020000TO8p4HH2x0.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=0EE5751FD92AC80B7DECD6E7F82C94BC6137A443A4D94907E5D5723AD52E9AD34132ADFA8E946EB0E7EC80B9886AD7A1BBF861A853305CA4&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778249 1631778209 40
+192.168.11.163 isure.stream.qqmusic.qq.com/RS02003uht0Q1uMX6U.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=096E6216A1C29FC28AA68EC89BD349A6748447F16E9AA3DBB0CA16456209ABF6A0C362D4BAC50B8CC2EE8673D755A8A4DD12157F7E087AAF&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778332 1631778329 3
+192.168.11.163 isure.stream.qqmusic.qq.com/RS020029lAG00hCGha.mp3?guid=7F623E36D49F3FFE8C21C5FA0CB093EE&vkey=FF130820AF90707E459D97D53A1C11E59B8B60E9B344E0B53745181208DCCDEF9392057F5C9B5F2C1A1802D7544AF8FF6069243CD5A81002&uin=1156414118&fromtag=83 isure.stream.qqmusic.qq.com 1631778394 1631778391 3
+192.168.11.163 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1631779211 1631779169 42
+192.168.11.55 ws6.stream.qqmusic.qq.com/F000001pHZUr4BYDY8.flac?guid=5E2D2A823D8B4ECCAEBFDF629F66CD95&vkey=612CF2B076FEDA53542DAF37739FC22FBCB30EDB121F549B8694CEAE937733AD8501C889EC758781138BAF8BCC7E0042930A761C9D419F74&uin=547151716&fromtag=118 ws6.stream.qqmusic.qq.com 1631791577 1631791565 12
+192.168.11.55 ws6.stream.qqmusic.qq.com/F0000025BTQa1QyYYA.flac?guid=5E2D2A823D8B4ECCAEBFDF629F66CD95&vkey=904520425DA0A147116A3FAE8C741D1FE454F4EF46D2345F23DB9376E0B026D835188612410F0ECDE48916C6A851DA9D9BFE1BB349646F17&uin=547151716&fromtag=118 ws6.stream.qqmusic.qq.com 1631791584 1631791565 19
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628473349 1628473318 31
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628476421 1628476408 13
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628476473 1628476469 4
+192.168.11.68 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 www.adgoo.cn 1628477244 1628477241 3
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628477340 1628477339 1
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628477419 1628477400 19
+192.168.11.169 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1628477640 1628477614 26
+192.168.11.169 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1628478221 1628478216 5
+192.168.11.169 200.200.200.200/IXC8e74069be9221278fbb73a93032e1b3e 106.120.158.154 1628478599 1628478590 9
+192.168.11.169 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1628478872 1628478871 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628487698 1628487697 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628487987 1628487983 4
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628489249 1628489199 50
+192.168.11.169 isure6.stream.qqmusic.qq.com/O400004FuPTN0e7m7x.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=797A544CF7E7096A6937C43FE4E32D4B10C0A78EB4311CF2747EDFA9B8879D8414146CFF4D0EE75E819EF3BB5C42523FCBCA6E2138D6D029&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1628489858 1628489817 41
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628491209 1628491149 60
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628493575 1628493516 59
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628498892 1628498890 2
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628499218 1628499218 0
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628499455 1628499455 0
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628499796 1628499796 0
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628500078 1628500073 5
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628500290 1628500287 3
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628500484 1628500481 3
+192.168.11.216 200.200.200.200:8081/IXC424559b98662bac2182a3c7b6c545362 www.adgoo.cn 1624146595 1624146594 1
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624157399 1624157394 5
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624157411 1624157394 17
+192.168.11.216 200.200.200.200:8081/IXC424559b98662bac2182a3c7b6c545362 www.adgoo.cn 1624168195 1624168194 1
+192.168.11.187 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1632449782 1632449760 22
+192.168.11.187 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1632449981 1632449926 55
+192.168.11.187 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1632450270 1632450222 48
+192.168.11.209 182.118.73.16/amobile.music.tc.qq.com 182.118.73.16 1634519535 1634519525 10
+192.168.11.209 101.26.40.179/amobile.music.tc.qq.com 101.26.40.179 1634521299 1634521298 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536001 1634535980 21
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536006 1634535980 26
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536194 1634536194 0
+192.168.11.228 157.255.74.159/amobile.music.tc.qq.com 157.255.74.159 1634536832 1634536832 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634536910 1634536910 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634537136 1634537136 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634537811 1634537811 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634538304 1634538303 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634538561 1634538560 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634538928 1634538928 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634540536 1634540536 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634540758 1634540758 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634542888 1634542888 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634544210 1634544210 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634544654 1634544654 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634544856 1634544856 0
+192.168.11.74 mail4.nospoofing.cn/coremail mail4.nospoofing.cn 1634544897 1634544846 51
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634545577 1634545577 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634545584 1634545577 7
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634545836 1634545836 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546020 1634546020 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546316 1634546316 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546758 1634546758 0
+192.168.11.222 mail3.nospoofing.cn/coremail mail3.nospoofing.cn 1634546890 1634546858 32
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634546902 1634546902 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634547145 1634547145 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634547435 1634547435 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634548216 1634548214 2
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634548700 1634548700 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634549758 1634549758 0
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634549766 1634549758 8
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634550415 1634550414 1
+192.168.11.102 60.6.199.166/amobile.music.tc.qq.com 60.6.199.166 1634550450 1634550414 36
+192.168.11.194 mail3.nospoofing.cn/coremail mail3.nospoofing.cn 1634561256 1634561236 20
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625192355 1625192354 1
+192.168.11.72 200.200.200.200:8081/IXCbb1172113e9532daf677b84d58f36b7f www.adgoo.cn 1625193912 1625193911 1
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625200857 1625200855 2
+192.168.11.152 182.254.52.187/amobile.music.tc.qq.com 182.254.52.187 1625217289 1625217254 35
+192.168.11.150 182.254.48.221/dlied1.qq.com down.qq.com 1625217345 1625217327 18
+192.168.11.150 101.71.72.206/dlied1.qq.com down.qq.com 1625217406 1625217346 60
+192.168.11.150 121.51.175.14/dlied1.qq.com down.qq.com 1625217406 1625217346 60
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217563 1625217573 -10
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217563 1625217573 -10
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217569 1625217573 -4
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217575 1625217573 2
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217575 1625217573 2
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217578 1625217573 5
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217581 1625217573 8
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217584 1625217573 11
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217587 1625217573 14
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217590 1625217573 17
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217590 1625217573 17
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217594 1625217573 21
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217594 1625217573 21
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217594 1625217573 21
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217597 1625217573 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217600 1625217573 27
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217603 1625217573 30
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217606 1625217573 33
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217609 1625217573 36
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217612 1625217573 39
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217615 1625217573 42
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217618 1625217573 45
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217618 1625217573 45
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217618 1625217573 45
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217630 1625217573 57
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217640 1625217583 57
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1625217646 1625217587 59
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217960 1625217957 3
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217969 1625217957 12
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217975 1625217957 18
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625217981 1625217957 24
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625218014 1625217957 57
+192.168.11.150 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1625218948 1625218932 16
+192.168.11.217 119.249.48.89/6572030CA2E3B718FADC72F92 ykugc.cp31.ott.cibntv.net 1625794256 1625794254 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625814149 1625814147 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625815126 1625815124 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625815546 1625815507 39
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625815629 1625815627 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625816689 1625816689 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817110 1625817107 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817503 1625817501 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817801 1625817799 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625817967 1625817966 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625820010 1625820010 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625820443 1625820425 18
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625821174 1625821170 4
+192.168.11.228 ws.stream.qqmusic.qq.com/RS020013SWho2JECJP.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=44D9B6D6CEBEA3DD686F39324AB1F1FD04D519DB7EFF9BF4ED951AD27AE7D4DCE56CA865160F96792884E424E9AB50D611DBB28AC7099303&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634192064 1634192064 0
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634192549 1634192544 5
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634193271 1634193261 10
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634196526 1634196526 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS02002Qf2pA4SWK8f.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=806BE79005292F1337046BA0AE684404A53D505EDC931A885AE673C12A641C9E4B8C0525A72566807C5D448B8AD2D172B64FC8DA64CE0DAC&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634196814 1634196814 0
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634197276 1634197276 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS0200368y060W0NsX.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=D9F307A9CC35960B8B40F5EC72A07C24DE1A2F92AE54F34D5AAF98EFB8F1B61C0EFA767FC11F0C06FE6929359DB16355A8458121ADE769ED&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634197564 1634197564 0
+192.168.11.228 isure.stream.qqmusic.qq.com/RS02000RYQNF4CNYLp.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=7D988EC41EBC83856158866A14FAE8AFCC3C91EBB6F88DC5580B798AA43643AD7AC587AFCFE0E6B47D320F425E4133D50BE41B8174B8647B&uin=&fromtag=83 isure.stream.qqmusic.qq.com 1634197785 1634197785 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS02000uy1Dg3wxs29.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=1383DE25141C33BF249CB4C002D9A5C14572F87C27DCFA610A6357144D6B92892164407DC144755C2FAE460ADBE4C78B1AC1A60201DD5244&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634199203 1634199203 0
+192.168.11.228 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1634199615 1634199615 0
+192.168.11.228 ws.stream.qqmusic.qq.com/RS02002202B43Cq4V4.mp3?guid=F700C4EEDBFEBAD75D871BA1F2925135&vkey=5AF3A2B778235C69869745738299120AC1DF22736B2CCD2D5474E6B3513396845BD21C3ABD2A64A627C643A0827EFDDB3DBC0FE2BC9DDB6C&uin=&fromtag=83 ws.stream.qqmusic.qq.com 1634199942 1634199941 1
+192.168.11.116 www.bjpowernode.com/Public www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 www.bjpowernode.com/Public www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 www.bjpowernode.com/Public www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 www.bjpowernode.com/static www.bjpowernode.com 1634204178 1634204176 2
+192.168.11.116 v.itheima.com/JAVAXKJSg java.itheima.com 1634204490 1634204489 1
+192.168.11.116 v.itheima.com/czbkzjtd java.itheima.com 1634204490 1634204489 1
+192.168.11.216 campus.51job.com/m campus.51job.com 1634206781 1634206781 0
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840807 1631840803 4
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840815 1631840803 12
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840819 1631840803 16
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840846 1631840803 43
+192.168.10.197 159.226.95.84/themes 159.226.95.84 1631840862 1631840803 59
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840960 1631840958 2
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840975 1631840958 17
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631840982 1631840958 24
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841040 1631841028 12
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841049 1631841028 21
+192.168.10.197 159.226.95.84/captcha?type=login&num=0.7917461250310223 159.226.95.84 1631841120 1631841069 51
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841034 1631841028 6
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841230 1631841227 3
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841261 1631841227 34
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841261 1631841227 34
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841279 1631841227 52
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631841295 1631841251 44
+192.168.11.203 isure.stream.qqmusic.qq.com/F0M00023M0mu1Xa1Qy.mflac?guid=5bd50342dd04210cd36d84ca85d74d604f6f7f1e&vkey=80C4FA1980980037F80F1DDDDC2CF342E04D12AF60DCBED326BFC3F0C7A9A3618B0219E823C61EBBE7DB5B1C0A82AA5AD0FEE0EAA6A37EFD&uin=1965190613&fromtag=999 isure.stream.qqmusic.qq.com 1631843894 1631843854 40
+192.168.11.203 isure.stream.qqmusic.qq.com/F0M000466PzR03MhLa.mflac?guid=5bd50342dd04210cd36d84ca85d74d604f6f7f1e&vkey=F8392F9461D28646ADD77EEBF70285024498DE2042F5B1F6EA8AEA1C6AF63CD09284138399079E154619619DAE68A44E2A3CA19AD4E2E129&uin=1965190613&fromtag=999 isure.stream.qqmusic.qq.com 1631844075 1631844026 49
+192.168.11.163 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1631845660 1631845644 16
+192.168.11.163 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1631845685 1631845644 41
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631845876 1631845820 56
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631846158 1631846101 57
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631846465 1631846408 57
+192.168.11.203 106.120.158.154/amobile.music.tc.qq.com 106.120.158.154 1631846465 1631846408 57
+192.168.11.163 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1631847903 1631847888 15
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848026 1631847966 60
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848026 1631847966 60
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848032 1631848014 18
+192.168.11.174 119.249.48.88/6572BFC8E874A71F8EA602D54 ykugc.cp31.ott.cibntv.net 1631848063 1631848014 49
+192.168.11.163 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1631848500 1631848499 1
+192.168.11.163 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1631848699 1631848697 2
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859780 1631859722 58
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859780 1631859722 58
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859897 1631859840 57
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859977 1631859931 46
+192.168.10.197 159.226.95.84/import 159.226.95.84 1631859986 1631859931 55
+192.168.11.163 106.120.158.156/amobile.music.tc.qq.com 106.120.158.156 1631869438 1631869379 59
+192.168.11.163 106.120.158.148/amobile.music.tc.qq.com 106.120.158.148 1631870700 1631870702 -2
+192.168.11.203 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1631871849 1631871836 13
+192.168.11.203 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1631871849 1631871836 13
+192.168.11.203 106.120.158.151/amobile.music.tc.qq.com 106.120.158.151 1631872507 1631872449 58
+192.168.11.187 isure.stream.qqmusic.qq.com/F000002HNYyY11rsUO.flac?guid=000000005de8e53f00000179d4d84b0c&vkey=018C85932ACF5658E4C8416933D38BCDB0DF2AD3C3078C7267A511D0862FDD31BC88643D9DEB7C612B8DA430BEF5C0E003FE009D31C93C1C&uin=2996816019&fromtag=110 isure.stream.qqmusic.qq.com 1632723205 1632723179 26
+192.168.11.187 isure.stream.qqmusic.qq.com/F000003f9LpN1JpBeu.flac?guid=000000005de8e53f00000179d4d84b0c&vkey=6AF997C04BD244E23AAD4797D03A67D2BCFDE83677512B87B9AC1B1912096097742C659D2069FB5FC76BC3FED493209CA4CA044F0267F4F0&uin=2996816019&fromtag=110 isure.stream.qqmusic.qq.com 1632723555 1632723562 -7
+192.168.11.187 42.202.165.32/amobile.music.tc.qq.com 42.202.165.32 1632737883 1632737837 46
+192.168.11.187 42.202.165.32/amobile.music.tc.qq.com 42.202.165.32 1632737917 1632737881 36
+192.168.11.187 150.139.230.176/amobile.music.tc.qq.com 150.139.230.176 1632737991 1632737948 43
+192.168.11.187 150.139.230.176/amobile.music.tc.qq.com 150.139.230.176 1632738071 1632738021 50
+192.168.11.187 150.139.230.176/amobile.music.tc.qq.com 150.139.230.176 1632738166 1632738136 30
+192.168.11.187 27.185.227.47/amobile.music.tc.qq.com 27.185.227.47 1632741035 1632740976 59
+192.168.11.176 200.200.200.200:8081/IXC2043ad8f6f6ca6b07d109472b96ac526 adgoo.cn 1627864651 1627864644 7
+192.168.11.176 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 adgoo.cn 1627864660 1627864644 16
+192.168.11.96 ykugc.cp31.ott.cibntv.net.qn302.myalicdn.com/6773A8F090D34715FE4AF6AEF ykugc.cp31.ott.cibntv.net 1627883231 1627883230 1
+192.168.11.96 ykugc.cp31.ott.cibntv.net.qn302.myalicdn.com/6773A8F090D34715FE4AF6AEF ykugc.cp31.ott.cibntv.net 1627883231 1627883230 1
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627884441 1627884438 3
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627886601 1627886611 -10
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627886899 1627886872 27
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627889126 1627889104 22
+192.168.11.94 v.xiaohongshu.com/8893c0c23dc344a98af6f28d39be8729714fe5b3_r?sign=6d79e26973d42aeef96e769390a4aba4&t=61685400 v.xiaohongshu.com 1634113425 1634113425 0
+192.168.11.102 m10.music.126.net/20200204151457 www.secrank.com 1634113605 1634113604 1
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634114217 1634114213 4
+192.168.11.228 182.118.73.17/amobile.music.tc.qq.com 182.118.73.17 1634114960 1634114926 34
+192.168.11.228 220.197.201.148/amobile.music.tc.qq.com 220.197.201.148 1634116020 1634116010 10
+192.168.11.228 upos-sz-mirrorkodo.bilivideo.com/upgcxcode www.bilibili.com 1634116213 1634116186 27
+192.168.11.228 upos-sz-mirrorkodo.bilivideo.com/upgcxcode www.bilibili.com 1634116213 1634116186 27
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634118929 1634118927 2
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634118929 1634118927 2
+192.168.11.94 cloudvideo.thepaper.cn/video cloudvideo.thepaper.cn 1634118929 1634118927 2
+192.168.11.106 111.206.23.43/videos www.iqiyi.com 1625283486 1625283482 4
+192.168.11.185 live-s3m.mediav.com/nativevideo www.adgoo.cn 1629075038 1629075036 2
+192.168.11.206 alyvidue.xmfeel.com/sv www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/sv www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/sv www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/68ffcd80c7ee49748aaf994d9a3e8780 www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/68ffcd80c7ee49748aaf994d9a3e8780 www.1feel.cn 1629077739 1629077738 1
+192.168.11.206 alyvidue.xmfeel.com/9cdf8d1bd29641e19c32fbe691ebcdbc www.1feel.cn 1629077745 1629077738 7
+192.168.11.185 200.200.200.200:8081/IXC86745ce897d7ad49bfbd9227413fed2c www.adgoo.cn 1629080436 1629080432 4
+192.168.11.59 200.200.200.200/IXC8462cd258119b89ed3af9efe7728348d isure.stream.qqmusic.qq.com 1629083870 1629083870 0
+192.168.11.59 200.200.200.200/IXCda67a9b551816940b2336a85dfbc4b74 isure.stream.qqmusic.qq.com 1629084362 1629084360 2
+192.168.11.178 200.200.200.200:8081/IXC4b7fb2d4afc55ef1cb8aa8fbb1957cba music.163.com 1629088869 1629088871 -2
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1629094066 1629094045 21
+192.168.11.59 200.200.200.200/IXCcd775048b33cf09f083cb75fbbe6f2de isure.stream.qqmusic.qq.com 1629096959 1629096955 4
+192.168.11.59 200.200.200.200/IXC200854eb5605850ca03edf0b3d53bc30 isure.stream.qqmusic.qq.com 1629097193 1629097191 2
+192.168.11.59 200.200.200.200/IXC96602338e011948ae704fa2948433e30 isure.stream.qqmusic.qq.com 1629097312 1629097311 1
+192.168.11.59 200.200.200.200/IXCc00e967e57ff42d28c5c53a8d2d3ac3e isure.stream.qqmusic.qq.com 1629097871 1629097870 1
+192.168.11.152 gif.img.avatarworks.com/20210812 anchor.avatarworks.com 1629098332 1629098327 5
+192.168.11.152 gif.img.avatarworks.com/20210812 anchor.avatarworks.com 1629098332 1629098327 5
+192.168.11.152 gif.img.avatarworks.com/20210812 anchor.avatarworks.com 1629098332 1629098327 5
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098338 1629098327 11
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.152 gif.img.avatarworks.com/20210201 anchor.avatarworks.com 1629098342 1629098327 15
+192.168.11.68 200.200.200.200:8081/IXC0995e0a77dbd1cf76a46e8c30af4c862 www.adgoo.cn 1627922243 1627922241 2
+192.168.11.68 200.200.200.200:8081/IXCcfc44ac86128850d196efb11dd3c3357 www.adgoo.cn 1627922243 1627922241 2
+192.168.11.68 200.200.200.200:8081/IXC335761e4e7ea1466f6e6584e6a10d37c www.adgoo.cn 1627922243 1627922241 2
+192.168.11.69 200.200.200.200:8081/IXCd104de8779032397b509bb4e66a3481a ykugc.cp31.ott.cibntv.net 1627954634 1627954633 1
+192.168.11.69 ykugc.cp31.ott.cibntv.net.qn302.myalicdn.com/677396D8FD534715FE8A32DE7 ykugc.cp31.ott.cibntv.net 1627954643 1627954633 10
+192.168.11.68 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb www.adgoo.cn 1627960041 1627960039 2
+192.168.11.198 mirrors.163.com/centos mirrors.163.com 1625620392 1625620390 2
+192.168.11.198 mirrors.163.com/centos mirrors.163.com 1625620699 1625620696 3
+192.168.11.232 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1625622847 1625622822 25
+192.168.11.193 200.200.200.200:8081/IXCb6ac5647feb9d94f765288505090adf3 www.adgoo.cn 1625626625 1625626623 2
+192.168.11.163 200.200.200.200:8081/IXC6d7bc4835308c1d9346cc8a78134f94c www.adgoo.cn 1625627523 1625627521 2
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625636864 1625636860 4
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625636864 1625636860 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625642763 1625642758 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643009 1625643007 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643319 1625643307 12
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643405 1625643367 38
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643420 1625643367 53
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625643651 1625643650 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625644265 1625644260 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625644778 1625644777 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625645055 1625644995 60
+192.168.11.232 200.200.200.200:8081/IXC2218a7bd146086452d1904a90928a1aa pc.360kan.com 1629011411 1629011402 9
+192.168.11.232 ysf.nosdn.127.net/webapi m.hqwx.com 1629012271 1629012268 3
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1629013623 1629013615 8
+192.168.11.232 200.200.200.200:8081/IXC35650296cdc8d44e2f4d227b1154adfd pc.360kan.com 1629016019 1629016015 4
+192.168.11.232 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb pc.360kan.com 1629018431 1629018416 15
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020830 1629020815 15
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629020861 1629020815 46
+192.168.11.232 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc pc.360kan.com 1629023229 1629023215 14
+192.168.11.232 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc pc.360kan.com 1629023263 1629023215 48
+192.168.11.232 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc pc.360kan.com 1629023263 1629023215 48
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1629026830 1629026816 14
+192.168.11.232 200.200.200.200:8081/IXCab406d92909506e9425e8c8f031840e1 pc.360kan.com 1629029235 1629029220 15
+192.168.11.232 video.jiandiao.com/ www.jiandiao.com 1629030544 1629030542 2
+192.168.11.232 video.jiandiao.com/ video.jiandiao.com 1629030544 1629030543 1
+192.168.11.59 200.200.200.200/IXC3c5ce86c5ceca47940e2de738ba7e95a isure.stream.qqmusic.qq.com 1629030869 1629030868 1
+192.168.11.59 200.200.200.200/IXC246a15872c1c07c47ffd5dd7cc315f24 isure.stream.qqmusic.qq.com 1629034030 1629034028 2
+192.168.11.59 200.200.200.200/IXCee7067be49f9dc5e3f16fbf6279b7b9f isure.stream.qqmusic.qq.com 1629034519 1629034518 1
+192.168.11.59 200.200.200.200/IXC4c0704b53508935233c3f81b3299ff0b isure.stream.qqmusic.qq.com 1629035008 1629035007 1
+192.168.11.59 200.200.200.200/IXCa86a983ca84e9e2c34026ede13da7c92 isure.stream.qqmusic.qq.com 1629035244 1629035231 13
+192.168.11.232 200.200.200.200:8081/IXC86745ce897d7ad49bfbd9227413fed2c pc.360kan.com 1628908428 1628908420 8
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628913221 1628913218 3
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628915631 1628915618 13
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628915659 1628915618 41
+192.168.11.232 200.200.200.200:8081/IXC506a8ac0e80c2da31197ab99a048f68b pc.360kan.com 1628918021 1628918018 3
+192.168.11.232 200.200.200.200:8081/IXC0ffa36a9f24927cf1cd8be32d3ab90e5 pc.360kan.com 1628922835 1628922818 17
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925222 1628925219 3
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXCa035cf55a75d47bd24146eb2f4797875 pc.360kan.com 1628925250 1628925219 31
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930027 1628930019 8
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC04f364de36c90dc6c9b630373e6172ca pc.360kan.com 1628930061 1628930019 42
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932435 1628932419 16
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932476 1628932419 57
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932476 1628932419 57
+192.168.11.232 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 pc.360kan.com 1628932476 1628932419 57
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934832 1628934819 13
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 200.200.200.200:8081/IXC40aa230391501927bb481e860b2681c4 pc.360kan.com 1628934860 1628934819 41
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937228 1628937219 9
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 live-s3m.mediav.com/nativevideo pc.360kan.com 1628937262 1628937219 43
+192.168.11.232 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb pc.360kan.com 1628939643 1628939619 24
+192.168.11.236 static.tianya.cn/js wenda.tianya.cn 1626076572 1626076566 6
+192.168.11.176 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626077662 1626077660 2
+192.168.11.176 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626077663 1626077660 3
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078375 1626078349 26
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078375 1626078349 26
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078375 1626078349 26
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078393 1626078349 44
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078393 1626078349 44
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078418 1626078359 59
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078418 1626078359 59
+192.168.11.104 play.myquark.cn/video quark.sm.cn 1626078418 1626078359 59
+192.168.11.104 200.200.200.200/IXC06c02cb20652aab439c51be332934e73 isure6.stream.qqmusic.qq.com 1626087783 1626087768 15
+192.168.11.104 200.200.200.200/IXC91e4695904f017222a1541baea73c9aa isure6.stream.qqmusic.qq.com 1626087979 1626087978 1
+192.168.11.104 200.200.200.200/IXC3edd3aba7290e864d61032a0b1dcff21 isure6.stream.qqmusic.qq.com 1626088231 1626088230 1
+192.168.11.104 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a isure6.stream.qqmusic.qq.com 1626088498 1626088477 21
+192.168.11.104 200.200.200.200/IXC5e3235d916e8490e9635eafc90da5c8c isure6.stream.qqmusic.qq.com 1626088974 1626088919 55
+192.168.11.104 200.200.200.200/IXCd6e2ccaeb4d6217614dc15a3bc2bfc15 isure6.stream.qqmusic.qq.com 1626089011 1626088980 31
+192.168.11.104 200.200.200.200/IXCebb9842e8fe1a19175bfec83714d6454 182.118.73.30 1626089377 1626089376 1
+192.168.11.104 200.200.200.200/IXC9c34dbad451dd736e5523390c64edcfb 182.118.73.30 1626089454 1626089437 17
+192.168.11.104 200.200.200.200/IXCb3bd9f3b612ec39e4cc17b0a8e991914 182.118.73.34 1626089914 1626089865 49
+192.168.11.104 200.200.200.200/IXC4f904491924c51fd0c08afab67cdcdc4 182.118.73.34 1626090237 1626090215 22
+192.168.11.104 200.200.200.200/IXC9a5dea5d50d9255292933e384bf656a5 182.118.73.34 1626090563 1626090514 49
+192.168.11.104 200.200.200.200/IXCa37c17ab35686d02f4f5345db383fb77 182.118.73.34 1626090695 1626090682 13
+192.168.11.104 200.200.200.200/IXC197b49a52cb87514061c87446aa9d213 182.118.73.34 1626090710 1626090682 28
+192.168.11.104 200.200.200.200/IXC0dc1a2114568de42a948a0acd7826ee6 182.118.73.34 1626090827 1626090783 44
+192.168.11.104 200.200.200.200/IXC1221b04749f7ccf5a8847a21a71e701a isure6.stream.qqmusic.qq.com 1626091045 1626090998 47
+192.168.11.104 200.200.200.200/IXC0de740306065478168cb5f58472dd59f isure6.stream.qqmusic.qq.com 1626091334 1626091280 54
+192.168.11.104 200.200.200.200/IXCd9a8aac9b2fa04be7fe42d2794150a06 182.118.73.35 1626091536 1626091495 41
+192.168.11.104 200.200.200.200/IXC77f72c91f730c25f9a07f57f3ed2da5c 182.118.73.35 1626091721 1626091664 57
+192.168.11.104 200.200.200.200/IXC5578e4dfddc0975b0c404eaf11ad3510 182.118.73.35 1626092053 1626091997 56
+192.168.11.104 200.200.200.200/IXCc88c06e840d71074c9e25cdcbf6d57c9 182.118.73.35 1626092249 1626092209 40
+192.168.11.104 200.200.200.200/IXC82c4d96522fa7caafe1019fbfe88a8eb 182.118.73.35 1626092486 1626092445 41
+192.168.11.104 200.200.200.200/IXCe1907c9d956ecb2767160d9a1dbef009 182.118.73.35 1626092768 1626092767 1
+192.168.11.104 200.200.200.200/IXC167d9b385d1225e420f2b4ede1067b97 isure6.stream.qqmusic.qq.com 1626093281 1626093275 6
+192.168.11.104 200.200.200.200/IXCb0377b6c5df36fc7b2a2e354b80e29ce isure6.stream.qqmusic.qq.com 1626093518 1626093478 40
+192.168.11.104 200.200.200.200/IXC881b20ef97252987c4831c9bb07ff180 isure6.stream.qqmusic.qq.com 1626093730 1626093686 44
+192.168.11.104 200.200.200.200/IXC2ad60216a59d6cca5be783fd881c4b3b isure6.stream.qqmusic.qq.com 1626093958 1626093918 40
+192.168.11.104 200.200.200.200/IXCca0632dc44f950d9c1a9b68b57520004 isure6.stream.qqmusic.qq.com 1626094154 1626094113 41
+192.168.11.104 200.200.200.200/IXCcb4391f975131791a44c6a229204f156 isure6.stream.qqmusic.qq.com 1626094332 1626094291 41
+192.168.11.206 200.200.200.200:8081/IXC94b90607aa8977d4468506579694d3a3 www.thepaper.cn 1628643461 1628643458 3
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649920 1628649910 10
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649924 1628649910 14
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649924 1628649910 14
+192.168.11.206 www.lvyaar.com/web3d www.lvyaar.com 1628649924 1628649910 14
+192.168.11.76 www.tsingoal.com/templates www.tsingoal.com 1628662357 1628662312 45
+192.168.11.169 200.200.200.200/IXC1bc67104fda4a3d0e00eabc32b61e342 106.120.158.155 1628667063 1628667003 60
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628833999 1628833993 6
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834002 1628833993 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834002 1628833993 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834021 1628833993 28
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834021 1628833993 28
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834033 1628833993 40
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834045 1628833993 52
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834048 1628833993 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834048 1628833993 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834094 1628834095 -1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834104 1628834095 9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834110 1628834095 15
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834113 1628834095 18
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834113 1628834095 18
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834116 1628834095 21
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834116 1628834095 21
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834128 1628834095 33
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834128 1628834095 33
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834128 1628834095 33
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834134 1628834095 39
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834140 1628834095 45
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834140 1628834095 45
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834140 1628834095 45
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834150 1628834095 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834162 1628834138 24
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628834162 1628834138 24
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844367 1628844353 14
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844373 1628844353 20
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844583 1628844582 1
+192.168.11.192 106.120.158.153/amobile.music.tc.qq.com 106.120.158.153 1628844849 1628844849 0
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628849221 1628849220 1
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628849396 1628849390 6
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628849688 1628849687 1
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628850017 1628850015 2
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628850318 1628850318 0
+192.168.11.192 200.200.200.200:8081/IXCbea98ce3b9cb5da8cf4bef7847f96b1a www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXCbea98ce3b9cb5da8cf4bef7847f96b1a www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.192 200.200.200.200:8081/IXC7946efa41bf9a4fd7bf7dff0aaa2c14d www.sgcc.com.cn 1628850735 1628850733 2
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628850785 1628850780 5
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628851344 1628851338 6
+192.168.11.216 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1628851645 1628851645 0
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.72 jgpdf.dlkzbd.top/yuanqidesktop jgpdf.dlkzbd.top 1625099939 1625099933 6
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100283 1625100271 12
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100314 1625100271 43
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100348 1625100296 52
+192.168.11.72 200.200.200.200:8081/IXC38baa4cf2440945552af43b2583e5ed9 www.people.com.cn 1625102775 1625102772 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100274 1625100271 3
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100283 1625100271 12
+192.168.11.152 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625100348 1625100296 52
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103454 1625103448 6
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103466 1625103448 18
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103469 1625103448 21
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103478 1625103448 30
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103463 1625103448 15
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103466 1625103448 18
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103469 1625103448 21
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103472 1625103448 24
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103475 1625103448 27
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103478 1625103448 30
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103481 1625103448 33
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103485 1625103448 37
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103488 1625103448 40
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103491 1625103448 43
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103494 1625103448 46
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103497 1625103448 49
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103500 1625103448 52
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103503 1625103448 55
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103506 1625103448 58
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625104993 1625104990 3
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625104996 1625104990 6
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625104999 1625104990 9
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105002 1625104990 12
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105005 1625104990 15
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105008 1625104990 18
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106041 1625106039 2
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106047 1625106039 8
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105011 1625104990 21
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105014 1625104990 24
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105017 1625104990 27
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105017 1625104990 27
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105021 1625104990 31
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105024 1625104990 34
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105027 1625104990 37
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105027 1625104990 37
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105030 1625104990 40
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105030 1625104990 40
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105033 1625104990 43
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105033 1625104990 43
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105036 1625104990 46
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105039 1625104990 49
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105042 1625104990 52
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105045 1625104990 55
+192.168.11.106 ptvlivef2018hls.people.com.cn/2010 cpc.people.com.cn 1625105045 1625104990 55
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106043 1625106039 4
+192.168.11.197 dh5.cntv.myhwcdn.cn/asp news.cctv.com 1625106059 1625106039 20
+192.168.11.158 1.56.98.150/amobile.music.tc.qq.com 1.56.98.150 1625106461 1625106435 26
+192.168.11.158 1.56.98.150/amobile.music.tc.qq.com 1.56.98.150 1625106761 1625106744 17
+192.168.11.158 1.56.98.150/amobile.music.tc.qq.com 1.56.98.150 1625106783 1625106744 39
+192.168.11.158 182.118.73.49/amobile.music.tc.qq.com 182.118.73.49 1625107664 1625107628 36
+192.168.11.158 182.118.73.49/amobile.music.tc.qq.com 182.118.73.49 1625107732 1625107689 43
+192.168.11.197 200.200.200.200:8081/IXPc84433269272f4f5c4d50e133e1494141692a7d2787dd k.sina.com.cn 1625107932 1625107898 34
+192.168.11.158 182.118.73.42/amobile.music.tc.qq.com 182.118.73.42 1625108294 1625108244 50
+192.168.11.193 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625108503 1625108500 3
+192.168.11.193 p2.bdstatic.com/rtmp.liveshow.lss-user.baidubce.com live.baidu.com 1625108515 1625108500 15
+192.168.11.158 182.118.73.22/amobile.music.tc.qq.com 182.118.73.22 1625109477 1625109434 43
+192.168.11.158 182.118.73.22/amobile.music.tc.qq.com 182.118.73.22 1625110306 1625110299 7
+192.168.11.206 dldir1.qq.com/invc dldir1.qq.com 1625120684 1625120682 2
+192.168.11.206 dldir1.qq.com/invc dldir1.qq.com 1625120684 1625120682 2
+192.168.11.206 dldir1.qq.com/invc dldir1.qq.com 1625120690 1625120682 8
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103485 1625103448 37
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103488 1625103448 40
+192.168.11.75 source07hls.v.news.cn/live www.xinhuanet.com 1625103506 1625103448 58
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.127 yjszs.nudt.edu.cn/upload yjszs.nudt.edu.cn 1625123599 1625123589 10
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625143265 1625143258 7
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625143277 1625143258 19
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625143292 1625143258 34
+192.168.11.100 tbm-auth.alicdn.com/e99361edd833010b mo.m.tmall.com 1625376532 1625376518 14
+192.168.11.152 iadmusicmat.music.126.net/23054dfbf21540e6bdc5cc20b37749f1.mp4 music.163.com 1625383264 1625383252 12
+192.168.11.169 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628560136 1628560120 16
+192.168.11.169 200.200.200.200/IXC8108b7bf0883b0909cb832c804b8be7c 106.120.158.152 1628560329 1628560314 15
+192.168.11.169 isure6.stream.qqmusic.qq.com/O400004XWBNM3ysirP.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=B21B471CBC8943D4875DED9361D0EC8CF363285895A2740F8E567FDF71D377D19F3EE686A447AE0444D55858F8065B6F79E35E1DD6D57B25&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1628560766 1628560750 16
+192.168.11.169 isure6.stream.qqmusic.qq.com/O400000Fm1Mx3M71HL.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=0DDACFB9D9EC9E6451D071FCA0D3CF966061D5A9074E360632CD3197329D3D541764321463A0B5DA3D4234467D1A50945A0F578C7A97BAA0&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1628561762 1628561703 59
+192.168.11.169 200.200.200.200/IXC33efb19d04a49664cfcc40aa3a29bdbd isure6.stream.qqmusic.qq.com 1628561796 1628561763 33
+192.168.11.216 registry.npm.taobao.org/@types%2flodash 1628564998 1628564939 59
+192.168.11.216 ws.stream.qqmusic.qq.com/F000003Aeujd0SIMS6.flac?guid=6DFC39D5D033058C917508D8219B02C7&vkey=572A550391260420A922D6C56E868441DE08E7EA1763948FB614ACF521A41B40E4060F416055F955605AFBB54B89F4564BE913C0A00B2618&uin=875075608&fromtag=80 ws.stream.qqmusic.qq.com 1628586139 1628586124 15
+192.168.11.176 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626136558 1626136555 3
+192.168.11.158 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626146286 1626146286 0
+192.168.11.158 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626156552 1626156551 1
+192.168.11.165 www.hdbkq.cn/templets 360.hdbkqyy.cn 1626406289 1626406288 1
+192.168.11.121 27.221.15.151/amobile.music.tc.qq.com 27.221.15.151 1626415019 1626414969 50
+192.168.11.121 200.200.200.200/IXC80f9a867f9a0ae7e289588835b6393bc 27.221.15.151 1626415287 1626415282 5
+192.168.11.121 200.200.200.200/IXC25908ce6f79fe31aec2bfa28acf2653e 27.221.15.151 1626415806 1626415797 9
+192.168.11.121 27.221.15.151/amobile.music.tc.qq.com 27.221.15.151 1626415864 1626415860 4
+192.168.11.184 tb-video.bdstatic.com/tieba-smallvideo-transcode-crf tieba.baidu.com 1626416064 1626416051 13
+192.168.11.121 27.221.15.151/amobile.music.tc.qq.com 27.221.15.151 1626416113 1626416089 24
+192.168.11.121 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626416414 1626416389 25
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418024 1626417986 38
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418441 1626418432 9
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418527 1626418494 33
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626418733 1626418719 14
+192.168.11.121 61.179.119.154/amobile.music.tc.qq.com 61.179.119.154 1626419305 1626419255 50
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626419489 1626419478 11
+192.168.11.121 27.221.15.153/amobile.music.tc.qq.com 27.221.15.153 1626419821 1626419788 33
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626420153 1626420120 33
+192.168.11.121 27.221.15.153/amobile.music.tc.qq.com 27.221.15.153 1626420116 1626420093 23
+192.168.11.121 182.254.52.212/amobile.music.tc.qq.com 182.254.52.212 1626420684 1626420679 5
+192.168.11.121 182.254.52.187/amobile.music.tc.qq.com 182.254.52.187 1626420779 1626420756 23
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626424287 1626424286 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626426834 1626426831 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626427639 1626427639 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626428192 1626428162 30
+192.168.11.228 www.mybuaa.com/static www.mybuaa.com 1626429826 1626429820 6
+192.168.11.228 www.mybuaa.com/static www.mybuaa.com 1626429998 1626429985 13
+192.168.11.74 200.200.200.200:8081/IXCe755482b103a594e47ef5604a47a8945 www.adgoo.cn 1626430527 1626430522 5
+192.168.11.152 iadmusicmatvideo.music.126.net/feb86ae186614bcba698043ac582332e.mp4 music.163.com 1626442162 1626442113 49
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628094445 1628094439 6
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628094446 1628094439 7
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628094451 1628094439 12
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628132247 1628132241 6
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628132259 1628132241 18
+192.168.11.68 200.200.200.200:8081/IXC86745ce897d7ad49bfbd9227413fed2c www.adgoo.cn 1628143040 1628143038 2
+192.168.11.68 200.200.200.200:8081/IXC08b5202c343f08978e85aed13eef5fdc www.adgoo.cn 1628143040 1628143038 2
+192.168.11.112 221.203.6.16/amobile.music.tc.qq.com 221.203.6.16 1626599077 1626599075 2
+192.168.11.112 isure.stream.qqmusic.qq.com/F000002umgFu3IY6Lc.flac?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=8FD5077F5B060DC7CB802E2B202952ED8DAAD024FF032202EF09A6810E398D79D0B81EFA577FB6FC80B0EC7BD6F131B8DF75A3D248BE7C4A&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626599393 1626599357 36
+192.168.11.112 isure.stream.qqmusic.qq.com/F000002umgFu3IY6Lc.flac?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=8FD5077F5B060DC7CB802E2B202952ED8DAAD024FF032202EF09A6810E398D79D0B81EFA577FB6FC80B0EC7BD6F131B8DF75A3D248BE7C4A&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626599667 1626599631 36
+192.168.11.112 isure.stream.qqmusic.qq.com/O600002FzeSE37y0TJ.ogg?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=814F83D715C4535E67FD39D2162FEB3844448592F4B219965F9A204D01F156B248A280000FF97679114D607E26EC47093929E964F12920F4&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626599906 1626599884 22
+192.168.11.112 isure.stream.qqmusic.qq.com/F000003bNq5B4L6Ioc.flac?guid=a2433d8ae1cf7fc3e4ba653b974f2a313917792d&vkey=59CD1B427B2F1982C465554F21E791457FB3A71A49E05E17364A52A8A01B5B3F355FFF20AEC0EC5E8FC0E2CCD35DBECCADAB7A345D81D333&uin=694406086&fromtag=999 isure.stream.qqmusic.qq.com 1626600220 1626600214 6
+192.168.11.112 61.179.119.159/amobile.music.tc.qq.com 61.179.119.159 1626601737 1626601735 2
+192.168.11.112 61.179.119.159/amobile.music.tc.qq.com 61.179.119.159 1626602017 1626602015 2
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628137 1632628083 54
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628143 1632628083 60
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628149 1632628104 45
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628155 1632628104 51
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628161 1632628104 57
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628168 1632628133 35
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628174 1632628133 41
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628180 1632628133 47
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628186 1632628133 53
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.12204-r.41cd6 lol-wegame-client-1258344700.file.myqcloud.com 1632628192 1632628133 59
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628506 1632628501 5
+192.168.11.115 lol-wegame-client-1258344700.file.myqcloud.com/rid.11778-r.92593 lol-wegame-client-1258344700.file.myqcloud.com 1632628542 1632628501 41
+192.168.11.187 27.185.227.49/amobile.music.tc.qq.com 27.185.227.49 1632639728 1632639695 33
+192.168.11.187 27.185.227.49/amobile.music.tc.qq.com 27.185.227.49 1632641457 1632641416 41
+192.168.11.187 27.185.227.49/amobile.music.tc.qq.com 27.185.227.49 1632641906 1632641890 16
+192.168.11.228 tbm-auth.alicdn.com/NysQic7pGbDDDv6hzoj www.taozhutu.com 1632642371 1632642370 1
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624213195 1624213194 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624240354 1624240304 50
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624240428 1624240425 3
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624245270 1624245223 47
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624245279 1624245223 56
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624245608 1624245597 11
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624256400 1624256395 5
+192.168.11.216 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624256409 1624256395 14
+192.168.11.72 edge.ivideo.sina.com.cn/143704706.mp4?KID=sina,viask&Expires=1624377600&ssig=fnybIKfOE8&reqid= video.sina.com.cn 1624259383 1624259381 2
+192.168.11.121 nmt.youdao.com/scripts nmt.youdao.com 1624260834 1624260833 1
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624264593 1624264542 51
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626740532 1626740530 2
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626740532 1626740530 2
+192.168.11.228 dldir1.qq.com/invc dldir1.qq.com 1626752420 1626752391 29
+192.168.11.228 dldir1.qq.com/invc dldir1.qq.com 1626752420 1626752391 29
+192.168.11.228 dldir1.qq.com/invc dldir1.qq.com 1626752420 1626752391 29
+192.168.11.121 200.200.200.200/IXC15ac96885e9be658b628316616c93bc2 221.203.6.30 1626759901 1626759891 10
+192.168.11.121 ws6.stream.qqmusic.qq.com/O4000015YToP0qqH31.ogg?guid=ffffffffcb6ff278000001766f0b8661&vkey=2484B4BE1E5D2612A5C5FA87B3550C51E82C053A095274BFC4AB9D0E82DE1C9D51E403360E95DC52CBAA362E9ACA83A86868F5663A94FAAD&uin=2495348953&fromtag=129 ws6.stream.qqmusic.qq.com 1626760027 1626759982 45
+192.168.11.121 ws6.stream.qqmusic.qq.com/O4000039llG32BZs88.ogg?guid=ffffffffcb6ff278000001766f0b8661&vkey=2A2B52386BF169A43E4F66903A8FCD056AD651E7CE36751EC1B40365514EE4DA5CF1428A19A54D8FD49BEC23D32F19F5C6BDB3310698D653&uin=2495348953&fromtag=129 ws6.stream.qqmusic.qq.com 1626760473 1626760429 44
+192.168.11.112 61.179.119.159/amobile.music.tc.qq.com 61.179.119.159 1626774345 1626774340 5
+192.168.11.112 61.179.119.153/amobile.music.tc.qq.com 61.179.119.153 1626774594 1626774592 2
+192.168.11.176 200.200.200.200:8081/IXC2e64b47a988838935319a66266ec43d3 adgoo.cn 1627000152 1627000148 4
+192.168.11.130 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1627023736 1627023715 21
+192.168.11.130 200.200.200.200:8081/IXC3a56ddb1e8db1666a16464cfe843a1f3 adgoo.cn 1627023755 1627023715 40
+192.168.11.130 200.200.200.200:8081/IXC0b886e2573f76710c9c6a017f39791bb adgoo.cn 1627023767 1627023715 52
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027764 1627027759 5
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027773 1627027759 14
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027779 1627027759 20
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027788 1627027759 29
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027798 1627027759 39
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027801 1627027759 42
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027807 1627027759 48
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027819 1627027759 60
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027831 1627027815 16
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027868 1627027815 53
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027871 1627027815 56
+192.168.11.141 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1627027859 1627027815 44
+192.168.11.210 tkipf.github.io/graph-convolutional-networks tkipf.github.io 1627043693 1627043689 4
+192.168.11.210 tkipf.github.io/graph-convolutional-networks tkipf.github.io 1627043693 1627043689 4
+192.168.11.210 tkipf.github.io/graph-convolutional-networks tkipf.github.io 1627043693 1627043689 4
+192.168.11.176 200.200.200.200:8081/IXC2238c3a9f6e97ef165501d736e6b19b1 adgoo.cn 1626482141 1626482139 2
+192.168.11.176 200.200.200.200:8081/IXCf880c1790dec39c1213e17f0be22ca28 adgoo.cn 1626482141 1626482139 2
+192.168.11.176 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626482141 1626482139 2
+192.168.11.152 xjjmv.com/demo.mp4 xjjmv.com 1626500408 1626500407 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500715 1626500714 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500721 1626500714 7
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500730 1626500714 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500745 1626500714 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500755 1626500714 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500755 1626500714 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500755 1626500714 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500776 1626500718 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500776 1626500718 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500776 1626500718 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500782 1626500791 -9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500782 1626500791 -9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500795 1626500791 4
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500804 1626500791 13
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500804 1626500791 13
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500807 1626500791 16
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500810 1626500791 19
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500813 1626500791 22
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500816 1626500791 25
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500816 1626500791 25
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500819 1626500791 28
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500828 1626500791 37
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500831 1626500791 40
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500831 1626500791 40
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500841 1626500791 50
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500841 1626500791 50
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500844 1626500791 53
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626500844 1626500791 53
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501000 1626501009 -9
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501074 1626501015 59
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501102 1626501092 10
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501102 1626501092 10
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501111 1626501092 19
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501145 1626501092 53
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626501148 1626501092 56
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626507025 1626507017 8
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626507025 1626507017 8
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626507710 1626507709 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508066 1626508064 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508186 1626508184 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508674 1626508673 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626508954 1626508949 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509391 1626509390 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509452 1626509451 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509878 1626509878 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509940 1626509938 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626509998 1626509938 60
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626510404 1626510404 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626510530 1626510524 6
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626510585 1626510584 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626511120 1626511116 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626511537 1626511535 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626511596 1626511595 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512201 1626512200 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512321 1626512320 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512591 1626512591 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626512652 1626512651 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626513046 1626513046 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626513322 1626513321 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515101 1626515100 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515224 1626515220 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515491 1626515491 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515672 1626515671 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515731 1626515671 60
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1626515795 1626515791 4
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180250 1628180239 11
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180256 1628180239 17
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180275 1628180239 36
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628180293 1628180239 54
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211609 1628211551 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211729 1628211734 -5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211729 1628211734 -5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211729 1628211734 -5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211612 1628211552 60
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1628211784 1628211734 50
+192.168.11.69 v.faakee.com/video www.meijust.com 1628214104 1628214101 3
+192.168.11.158 xxgc.hgu.edu.cn/images hguxgkx.com 1628233802 1628233751 51
+192.168.11.158 xxgc.hgu.edu.cn/images hguxgkx.com 1628233802 1628233751 51
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626654812 1626654806 6
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626654831 1626654806 25
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1626654837 1626654806 31
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626661783 1626661763 20
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626661817 1626661763 54
+192.168.11.123 flv0.bn.netease.com/1241666f047e7430183e3978eee38e021c304b8189a73aa0f7a7673993a0d95a71b5f40c31dd0c1d3c6df8445d88fe0a99cd559e5b740b6cb672c88b4e142a249ba2407faa6ed310d83eb93a31f7ef25513034c67a15290230945ae9008da6873f70330e6b8b81a57b8e5be225f914ad64d73e3cdc286308.mp4 www.163.com 1626663019 1626663017 2
+192.168.11.123 fundact.eastmoney.com/banner stock.eastmoney.com 1626664827 1626664824 3
+192.168.11.123 ysf.nosdn.127.net/webapi note.youdao.com 1626665930 1626665927 3
+192.168.11.152 iadmusicmat.music.126.net/5a118f34cad84573b4b5837573efe022.mp4 music.163.com 1626673144 1626673136 8
+192.168.11.62 zkvideo-oss.myzaker.com/rgcms app.myzaker.com 1628725588 1628725528 60
+192.168.11.62 fundact.eastmoney.com/banner finance.eastmoney.com 1628725624 1628725622 2
+192.168.11.146 gvideo.qpic.cn/0bf26uadaaaauiagblqkq5qvb5odgd2qamaa.f10002.mp4?dis_k=f4f62f16383c08705d5cbd8c7724c1bc&dis_t=1628762406 game.weixin.qq.com 1628769257 1628769260 -3
+192.168.11.146 gvideo.qpic.cn/0b78gyaa6aaatiajc6qtxjqvanwdb43aadya.f10002.mp4?dis_k=6888f7b87c22b081f31c22dcca590b39&dis_t=1628765893 game.weixin.qq.com 1628769257 1628769260 -3
+192.168.11.146 gvideo.qpic.cn/0bf22uaccaaaquajewidtfqvbvodehkqaiia.f10002.mp4?dis_k=14278a1a13d6bad7bc4e74e9dcc0d5a8&dis_t=1628762406 game.weixin.qq.com 1628769257 1628769260 -3
+192.168.11.158 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a 61.179.119.155 1625448472 1625448455 17
+192.168.11.158 200.200.200.200/IXC1c06a99f8ee227d57e05348980f65b0a 61.179.119.155 1625448929 1625448877 52
+192.168.11.158 ws6.stream.qqmusic.qq.com/O400004QXdW72OvbTb.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=F9DD3DB7F18585CFE9629D4FD3C06D62D873CF3F6B7921195B6F50B6BA6BE0C43B83C3B029EC93E309C576801F46053AAF0E78DBDF7BEEF6&uin=1152921504878518693&fromtag=129 ws6.stream.qqmusic.qq.com 1625446561 1625446503 58
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625469235 1625469212 23
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625469389 1625469367 22
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625470148 1625470107 41
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625470151 1625470107 44
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1625470154 1625470107 47
+192.168.11.158 61.179.119.146/amobile.music.tc.qq.com 61.179.119.146 1625470888 1625470837 51
+192.168.11.158 61.179.119.150/amobile.music.tc.qq.com 61.179.119.150 1625471101 1625471100 1
+192.168.11.158 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a 61.179.119.150 1625471340 1625471321 19
+192.168.11.158 200.200.200.200/IXC0dc1a2114568de42a948a0acd7826ee6 61.179.119.150 1625471715 1625471713 2
+192.168.11.144 xygh.ccgp.gov.cn/gs4 xygh.ccgp.gov.cn 1625472823 1625472819 4
+192.168.11.158 ws6.stream.qqmusic.qq.com/O600003XNpKR2nd3Iw.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7F5F0393C5EE42051ACA5760A849CFFBF0D728114BD5CAD989688A05D7226E943A9EA352F05BAA6FD186244D21C64250107C3BFF1D6E587B&uin=1152921504878518693&fromtag=129 ws6.stream.qqmusic.qq.com 1625472891 1625472869 22
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625475884 1625475883 1
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625475892 1625475883 9
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625479738 1625479737 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480049 1625480047 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480061 1625480047 14
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480408 1625480407 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625480632 1625480632 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625481234 1625481233 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625481963 1625481921 42
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625482365 1625482363 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625482559 1625482558 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625483154 1625483149 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625483618 1625483615 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625483717 1625483711 6
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625485643 1625485640 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625486098 1625486097 1
+192.168.11.227 aqqmusic.tc.qq.com/amobile.music.tc.qq.com aqqmusic.tc.qq.com 1625486485 1625486442 43
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486488 1625486468 20
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486488 1625486468 20
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486488 1625486468 20
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486623 1625486610 13
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486859 1625486843 16
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486862 1625486843 19
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486994 1625486945 49
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486994 1625486945 49
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625486994 1625486945 49
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487127 1625487117 10
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487068 1625487025 43
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487068 1625487025 43
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487228 1625487186 42
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487364 1625487353 11
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625487400 1625487397 3
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487511 1625487466 45
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487511 1625487466 45
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487511 1625487466 45
+192.168.11.227 uqmv.music.tc.qq.com/25245E229D829AEE612297CA91E760B7A367848D328005A86A916C2611342C79BE34751DF309795CD651265E01D2DDC8ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487643 1625487643 0
+192.168.11.227 uqmv.music.tc.qq.com/25245E229D829AEE612297CA91E760B7A367848D328005A86A916C2611342C79BE34751DF309795CD651265E01D2DDC8ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487643 1625487643 0
+192.168.11.227 uqmv.music.tc.qq.com/F6DEF8F3740114123603FDAD13361D02A03ABF25611E439CDC9B30E6F8738C3B65229F3A4F9389E067DC5E5407C0A010ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487649 1625487643 6
+192.168.11.227 uqmv.music.tc.qq.com/F6DEF8F3740114123603FDAD13361D02A03ABF25611E439CDC9B30E6F8738C3B65229F3A4F9389E067DC5E5407C0A010ZZ5A14F775D58A4E33B04C909FE5C50CFC uqmv.music.tc.qq.com 1625487649 1625487643 6
+192.168.11.227 182.254.52.218/amobile.music.tc.qq.com 182.254.52.218 1625487701 1625487648 53
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625487710 1625487653 57
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625488878 1625488874 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625489271 1625489267 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625489723 1625489722 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625489974 1625489970 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625490177 1625490175 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625490239 1625490235 4
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625490748 1625490747 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625493286 1625493286 0
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625493455 1625493454 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625494168 1625494167 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625494318 1625494317 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1625494438 1625494437 1
+192.168.11.103 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626830623 1626830605 18
+192.168.11.103 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626830671 1626830664 7
+192.168.11.103 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1626830671 1626830664 7
+192.168.11.103 live-s3m.mediav.com/nativevideo adgoo.cn 1626830686 1626830664 22
+192.168.11.103 live-s3m.mediav.com/nativevideo adgoo.cn 1626830695 1626830664 31
+192.168.11.152 200.200.200.200:8081/IXC313494517c114496bcff2e4b841f2ba8 music.163.com 1626842348 1626842326 22
+192.168.11.152 200.200.200.200:8081/IXC4754268f107499c08073d03d81ec5e34 music.163.com 1626842370 1626842326 44
+192.168.11.103 live-s3m.mediav.com/nativevideo www.adgoo.cn 1626846944 1626846942 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624499169 1624499150 19
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624499178 1624499150 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624499193 1624499150 43
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624502360 1624502357 3
+192.168.11.236 200.200.200.200:8081/IXCe2eedefff41176434234780c0a7ecc7c www.adgoo.cn 1624502373 1624502357 16
+192.168.11.121 nmt.youdao.com/scripts nmt.youdao.com 1624503202 1624503197 5
+192.168.10.223 dldir1.qq.com/invc dldir1.qq.com 1624503436 1624503429 7
+192.168.10.223 dldir1.qq.com/invc dldir1.qq.com 1624503436 1624503429 7
+192.168.10.223 dldir1.qq.com/invc dldir1.qq.com 1624503436 1624503429 7
+192.168.11.236 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1624507791 1624507773 18
+192.168.11.236 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1624507791 1624507773 18
+192.168.11.236 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1624507791 1624507773 18
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624519627 1624519626 1
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624519627 1624519626 1
+192.168.11.236 200.200.200.200:8081/IXC29106419759a8fb887e6a4c22ec27de9 www.adgoo.cn 1624519628 1624519626 2
+192.168.11.158 61.179.119.146/amobile.music.tc.qq.com 61.179.119.146 1624519953 1624519894 59
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624520099 1624520092 7
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624520559 1624520553 6
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624520860 1624520852 8
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624521172 1624521127 45
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624521310 1624521292 18
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624521513 1624521480 33
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400002iWK0Z1MDsLF.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=460B39C57A79C95B39D137F0A50B0DC6B320465F2EAD0FE64099B7CDD9E4295F7E253325B2BC223E56D2273D893735B14A12F5C25E615CEF&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624521811 1624521771 40
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400003jfgq435vJqv.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=D2CED709381152B0550C21CC1B1829066DD87DA54789FBA69B09A109877D4A97017562F5A5518B8277BBB5BCB4573151D2C6B82145908B64&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522054 1624522038 16
+192.168.11.158 isure6.stream.qqmusic.qq.com/O4000009TKer1yYbn6.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=206282905D50C59022596D15AA9B79460C256257CDBA7FE463E40611121902DEC9881C08BA46C96972A549E17D006713932A6BAA3D3E212C&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522241 1624522221 20
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400003jFOiK2uvQJU.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=35A32CA6BFE7E652829F347BADBA8B00868D575C38DD1061C249F7CC617D17B96902312DE0E82841539CE32BE633C9BED5AE65D142A43026&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522443 1624522428 15
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400000NS51h3V4TW1.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=5BEC713D500CE6A3253709ABC7C28CE248651B086543DDC8DD116C998B615892C3C2E56993C89D7A8AC2402C58921B93AC9A91D0EBF15DF6&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522630 1624522617 13
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400000DE5Hd2elKpM.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=F0B8F90345560D2371A26C9182E0901A1466DE14865465CF79C9102745BF10CDBA78CA40625D5CFDAC9801D98857CB78E01398262517C2F4&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624522787 1624522771 16
+192.168.11.158 isure6.stream.qqmusic.qq.com/O40000108wbk2u7G7q.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=470A40D585426AF87157EEABC2FFA4FCE2EC46F971CA7FA3BF35B22E87177B996EBE1C28017715055AFB9C51A1933EB34F1EF02D3BD6BC55&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624523002 1624522972 30
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400001A6pg7478Sdg.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7379ED64B21FE549CEDC4B5B94253230653667DC833ED7F29327D4C4F4F88F4ADDBFDF86864A776AC5166D9A0C5F29447E48CDB1AD01152C&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624523263 1624523233 30
+192.168.11.158 isure6.stream.qqmusic.qq.com/O4000029tedg3Kl1s2.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=9D3CDA1010E7CAC1CD971BA9198DBC9825A2A0221E3266F2E0334092CD0FE81095AE15B9B10969B497F4E229B9AB16CA42872FCBB8CDA8FD&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624523469 1624523415 54
+192.168.11.216 182.254.52.51/amobile.music.tc.qq.com 182.254.52.51 1624523524 1624523508 16
+192.168.11.69 www.zhouheiya.cn/wcs www.zhouheiya.cn 1624524298 1624524291 7
+192.168.11.69 www.zhouheiya.cn/wcs www.zhouheiya.cn 1624524298 1624524291 7
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624528979 1624528975 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624529446 1624529425 21
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624529695 1624529691 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624529883 1624529881 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624530414 1624530410 4
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624843858 1624843847 11
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624843866 1624843847 19
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624846613 1624846587 26
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857414 1624857386 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857414 1624857386 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857414 1624857386 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624857433 1624857386 47
+192.168.11.130 live-s3m.mediav.com/nativevideo adgoo.cn 1624862239 1624862234 5
+192.168.11.130 200.200.200.200:8081/IXCa9ae23103902d07f13051cd669c78b31 adgoo.cn 1624862239 1624862234 5
+192.168.11.130 200.200.200.200:8081/IXC3a56ddb1e8db1666a16464cfe843a1f3 adgoo.cn 1624862239 1624862234 5
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624864619 1624864613 6
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624864619 1624864613 6
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624864619 1624864613 6
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866474 1624866416 58
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866474 1624866416 58
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866547 1624866544 3
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866580 1624866544 36
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624866863 1624866814 49
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624869953 1624869942 11
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624870020 1624870002 18
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624870622 1624870632 -10
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624873277 1624873276 1
+192.168.11.190 200.200.200.200/IXC3bb3f6a4130fcc7b3a87d277b2662577 106.120.158.152 1627523316 1627523315 1
+192.168.11.151 200.200.200.200/IXCb443a6815b71438cfbdf2865f64f898b 106.120.158.146 1627539384 1627539386 -2
+192.168.11.151 200.200.200.200/IXCb723dc45e1c731a0c2bbc3d7e1945861 106.120.158.146 1627539396 1627539386 10
+192.168.11.151 200.200.200.200/IXCa37c17ab35686d02f4f5345db383fb77 106.120.158.146 1627539516 1627539507 9
+192.168.11.151 200.200.200.200/IXC5d551515b45b02cbee6879987b04715a 106.120.158.146 1627539577 1627539569 8
+192.168.11.151 200.200.200.200/IXCccbb89cf68587c0d7de343777d2a5d60 106.120.158.146 1627539814 1627539798 16
+192.168.11.151 200.200.200.200/IXC06c02cb20652aab439c51be332934e73 106.120.158.146 1627539995 1627539975 20
+192.168.11.151 200.200.200.200/IXC0de740306065478168cb5f58472dd59f 106.120.158.154 1627540336 1627540280 56
+192.168.11.151 200.200.200.200/IXC0de740306065478168cb5f58472dd59f 106.120.158.154 1627540354 1627540295 59
+192.168.11.151 200.200.200.200/IXCff86964f3bf502a3e5bdc1b2236150d2 106.120.158.154 1627540351 1627540295 56
+192.168.11.151 200.200.200.200/IXCd74f3e29e9d115910c31542ea5951f91 106.120.158.154 1627540499 1627540478 21
+192.168.11.151 200.200.200.200/IXC881b20ef97252987c4831c9bb07ff180 106.120.158.154 1627540963 1627540941 22
+192.168.11.151 200.200.200.200/IXCc075bad8b879001ea54f7b3cab11493f 106.120.158.154 1627541651 1627541633 18
+192.168.11.151 200.200.200.200/IXC0dc1a2114568de42a948a0acd7826ee6 106.120.158.152 1627541903 1627541857 46
+192.168.11.151 200.200.200.200/IXCebb9842e8fe1a19175bfec83714d6454 106.120.158.152 1627542161 1627542102 59
+192.168.11.151 200.200.200.200/IXCb3bd9f3b612ec39e4cc17b0a8e991914 106.120.158.152 1627542594 1627542562 32
+192.168.11.151 200.200.200.200/IXC5df2418661523083e7e5f1259121f6a3 106.120.158.152 1627543098 1627543058 40
+192.168.11.151 200.200.200.200/IXC1c86258aef52d6c9c6376b0df93bd26a 106.120.158.152 1627543406 1627543384 22
+192.168.11.186 gvideo.qpic.cn/0bf2amaaaaaatyah3qxwwnqfaa6daabqaaaa.f10002.mp4?dis_k=d7e82be921c3634797126ca1c0e84e2b&dis_t=1627543654 game.weixin.qq.com 1627551826 1627551824 2
+192.168.11.186 gvideo.qpic.cn/0b78xuaagaaakyallrxorjqfbpodao6qaaya.f10002.mp4?dis_k=10a43bbe994c5ca0bde41081d9ee2f3b&dis_t=1627543654 game.weixin.qq.com 1627551826 1627551824 2
+192.168.11.186 gvideo.qpic.cn/0bf2u4aboaaaaiaa4mabvzqvbj6dc6tqafya.f10002.mp4?dis_k=b71920a7afe726223815ef6ef1e345d4&dis_t=1627543556 game.weixin.qq.com 1627551826 1627551824 2
+192.168.11.215 ws.stream.qqmusic.qq.com/O600002asUjN02Veo2.ogg?guid=FC846A3269FF7EDEED22673B6DB50B27&vkey=1DB858CFC346CAF7718E3E6200EE3BAADD067E7893570DD0C7AD17B9ED61394BAFECE7900C6593D566D23088C5A2F3AC4F1FBAA0ABBF35F9&uin=940158620&fromtag=77 ws.stream.qqmusic.qq.com 1627572913 1627572911 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624530740 1624530735 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624531025 1624531021 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624531797 1624531793 4
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624532294 1624532289 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624532779 1624532774 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624533776 1624533775 1
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624534334 1624534332 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624534911 1624534909 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535194 1624535187 7
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535403 1624535401 2
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535600 1624535595 5
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624535861 1624535815 46
+192.168.11.130 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624687702 1624687701 1
+192.168.11.130 200.200.200.200:8081/IXC1b38c6e3dd4a085fd62e976a042e5628 www.adgoo.cn 1624687702 1624687701 1
+192.168.11.223 images.sohu.com/saf news.sohu.com 1624324549 1624324530 19
+192.168.11.72 200.200.200.200:8081/IXCdc182192a487f74dc3e42739eb30978e www.adgoo.cn 1624339023 1624339014 9
+192.168.11.72 200.200.200.200:8081/IXCf4b606d1e32e436f40d88160af85ea87 www.adgoo.cn 1624339042 1624339014 28
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624349868 1624349814 54
+192.168.11.186 fc-transvideo.baidu.com/9b586585b4ede831848b7ccb5169c659.mp4 m.baidu.com 1624366555 1624366551 4
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1627259556 1627259554 2
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627283845 1627283837 8
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627283864 1627283837 27
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291308 1627291303 5
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291314 1627291303 11
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291332 1627291303 29
+192.168.11.152 hls.cntv.lxdns.com/asp www.m3u8player.top 1627291348 1627291303 45
+192.168.11.59 livews-hls.5club.cctv.cn/hls api.cctv.cn 1627294343 1627294324 19
+192.168.11.59 livews-hls.5club.cctv.cn/hls api.cctv.cn 1627294352 1627294324 28
+192.168.11.140 v.itheima.com/%E5%A4%A7%E6%95%B0%E6%8D%AE yun.itheima.com 1627306640 1627306606 34
+192.168.11.140 v.itheima.com/%E5%A4%A7%E6%95%B0%E6%8D%AE yun.itheima.com 1627306640 1627306606 34
+192.168.11.109 www.306.cn/upload www.306.cn 1625535007 1625534979 28
+192.168.11.121 ws6.stream.qqmusic.qq.com/O6000039KumX2TAabS.ogg?guid=ffffffffcb6ff278000001766f0b8661&vkey=B0BEF63DAEE26847D1EA07DE267371D1AFA19D80E3608B87E4C93501CB7AD4935051A30A51D4888AD7BC2B145F1B02CB158AB69C388B83D9&uin=2495348953&fromtag=129 ws6.stream.qqmusic.qq.com 1625540045 1625540016 29
+192.168.11.193 200.200.200.200:8081/IXC50d5f3ce3e8bd44f45e2b72d0e443fcc www.adgoo.cn 1625540088 1625540083 5
+192.168.11.193 200.200.200.200:8081/IXCe2eedefff41176434234780c0a7ecc7c www.adgoo.cn 1625540094 1625540083 11
+192.168.11.121 200.200.200.200/IXC095d2715b8d4d7b363198c3028f2bb4b ws6.stream.qqmusic.qq.com 1625540106 1625540070 36
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625551635 1625551625 10
+192.168.11.193 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625551635 1625551625 10
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625556457 1625556453 4
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625557880 1625557844 36
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625557892 1625557844 48
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625557895 1625557876 19
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558067 1625558060 7
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558067 1625558060 7
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558172 1625558177 -5
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558172 1625558177 -5
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558746 1625558722 24
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625558827 1625558826 1
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558894 1625558889 5
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559204 1625559176 28
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559403 1625559401 2
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559591 1625559587 4
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558288 1625558254 34
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558288 1625558254 34
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558430 1625558437 -7
+192.168.11.227 182.254.52.193/amobile.music.tc.qq.com 182.254.52.193 1625558430 1625558437 -7
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559784 1625559728 56
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625559978 1625559956 22
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625560208 1625560206 2
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625560377 1625560361 16
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625560574 1625560566 8
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625562371 1625562370 1
+192.168.11.81 61.179.119.149/amobile.music.tc.qq.com 61.179.119.149 1625557625 1625557625 0
+192.168.11.228 60.6.199.145/amobile.music.tc.qq.com 60.6.199.145 1634265374 1634265372 2
+192.168.11.102 isure.stream.qqmusic.qq.com/F0M0003LnSNo1ecdc3.mflac?guid=B0DA0854A4D62464008E6B2598D42626&vkey=EAEB47F5E8FCC284F9DB5AAAB26F69BF45CEFC61D2CB16DB5FA22BE2573D05EE85FF94C33EABFC6045C77AF6DFB5E7B8DEF7162C9261F915&uin=2996816019&fromtag=80 isure.stream.qqmusic.qq.com 1634265921 1634265921 0
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266332 1634266319 13
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266336 1634266319 17
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266358 1634266319 39
+192.168.11.222 mail2.nospoofing.cn/coremail mail2.nospoofing.cn 1634266640 1634266582 58
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627318642 1627318636 6
+192.168.11.176 live-s3m.mediav.com/nativevideo adgoo.cn 1627347420 1627347419 1
+192.168.11.176 200.200.200.200:8081/IXCf880c1790dec39c1213e17f0be22ca28 adgoo.cn 1627347518 1627347515 3
+192.168.11.176 200.200.200.200:8081/IXCacf7f00dc8ed8944dda1a02019a8f78c adgoo.cn 1627347518 1627347515 3
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627351147 1627351123 24
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627351125 1627351123 2
+192.168.11.59 106.120.158.155/amobile.music.tc.qq.com 106.120.158.155 1627351125 1627351123 2
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627352332 1627352279 53
+192.168.11.59 106.120.158.147/amobile.music.tc.qq.com 106.120.158.147 1627352741 1627352738 3
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627352962 1627352949 13
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353226 1627353222 4
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353426 1627353418 8
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353665 1627353648 17
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627353887 1627353883 4
+192.168.11.59 150.139.230.154/amobile.music.tc.qq.com 150.139.230.154 1627354636 1627354609 27
+192.168.11.59 ws.stream.qqmusic.qq.com/O600000OwJP23Cc7iV.ogg?guid=1d80a75b82ad4254488bdb4f2b25fc21f825711b&vkey=9D7C470770227338AC7EA31D8D869F77109EF167246613555E04EDF4DA69702D9E7BEA03FA6805EDCC1CDF5D6D82974AA0D9BE9794DC9149&uin=1152921504815163542&fromtag=999 ws.stream.qqmusic.qq.com 1627355524 1627355520 4
+192.168.11.59 ws.stream.qqmusic.qq.com/O600000OwJP23Cc7iV.ogg?guid=1d80a75b82ad4254488bdb4f2b25fc21f825711b&vkey=9D7C470770227338AC7EA31D8D869F77109EF167246613555E04EDF4DA69702D9E7BEA03FA6805EDCC1CDF5D6D82974AA0D9BE9794DC9149&uin=1152921504815163542&fromtag=999 ws.stream.qqmusic.qq.com 1627355524 1627355520 4
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627356830 1627356822 8
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627356836 1627356822 14
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627356845 1627356822 23
+192.168.11.152 200.200.200.200:8081/IXCfc525d8114a8422729e809fbf00dafe1 music.163.com 1627369709 1627369689 20
+192.168.11.152 200.200.200.200:8081/IXCfecf5c5ec4b4f35478612db0ed82e64c music.163.com 1627369709 1627369689 20
+192.168.11.152 200.200.200.200:8081/IXCdcc432213c3f298b53e46b4565cdcede music.163.com 1627369709 1627369689 20
+192.168.11.152 iadmusicmat.music.126.net/3103fee3065e432fa331fda06f3a1309.mp4 music.163.com 1627369710 1627369689 21
+192.168.11.152 iadmusicmat.music.126.net/46052f1caac248c295e9c1eb2246455c.mp4 music.163.com 1627369715 1627369689 26
+192.168.11.152 iadmusicmatvideo.music.126.net/e562b2cc84ab416c85c592f63bc9a3c1.mp4 music.163.com 1627369737 1627369689 48
+192.168.11.152 iadmusicmatvideo.music.126.net/865b70aa1ee64df9bb9b2cf0370d7734.mp4 music.163.com 1627369746 1627369689 57
+192.168.11.103 live-s3m.mediav.com/nativevideo adgoo.cn 1627378065 1627378036 29
+192.168.11.117 vd3.bdstatic.com/mda-mftcskyi72nzetyx baijiahao.baidu.com 1624929747 1624929697 50
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624932277 1624932268 9
+192.168.11.192 www.gov.cn/govweb www.gov.cn 1624934001 1624933979 22
+192.168.11.192 www.gov.cn/govweb www.gov.cn 1624934466 1624934465 1
+192.168.11.192 200.200.200.200:8081/IXC23c71d71b2980d3c6c9aaf3617d2f0f2 www.ruoyi.vip 1624936646 1624936603 43
+192.168.11.192 200.200.200.200:8081/IXC23c71d71b2980d3c6c9aaf3617d2f0f2 ruoyi.vip 1624936750 1624936749 1
+192.168.11.192 200.200.200.200:8081/IXC23c71d71b2980d3c6c9aaf3617d2f0f2 ruoyi.vip 1624936759 1624936749 10
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624936873 1624936864 9
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624940035 1624940034 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624941045 1624941040 5
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624942080 1624942078 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624942790 1624942785 5
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624943070 1624943068 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624943070 1624943068 2
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624943075 1624943068 7
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624943290 1624943288 2
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624943555 1624943553 2
+192.168.11.171 fundact.eastmoney.com/banner finance.eastmoney.com 1624946333 1624946332 1
+192.168.11.216 v.bootstrapmb.com/2019 v.bootstrapmb.com 1624948280 1624948237 43
+192.168.11.216 v.bootstrapmb.com/2019 v.bootstrapmb.com 1624948280 1624948237 43
+192.168.11.216 v.bootstrapmb.com/2019 v.bootstrapmb.com 1624948280 1624948237 43
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624948824 1624948779 45
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624949033 1624949032 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624949832 1624949831 1
+192.168.11.192 182.254.52.52/amobile.music.tc.qq.com 182.254.52.52 1624950013 1624950007 6
+192.168.11.194 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624952154 1624952149 5
+192.168.11.194 isure.stream.qqmusic.qq.com/O6000048k3IF3ZRn93.ogg?guid=4599e3108d9ed57935ccc37ab5f8d8a882a0d02c&vkey=FB3DF33A3C9614C09D5C7A478567213645DAE6EDADB9E9A0D1299E418724ACABF96194362CDC23BCB369DA5976ADAF81A19A1B629EFB101C&uin=1010997598&fromtag=999 isure.stream.qqmusic.qq.com 1624952154 1624952149 5
+192.168.11.194 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624952185 1624952149 36
+192.168.11.194 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624954799 1624954793 6
+192.168.11.72 live-s3m.mediav.com/nativevideo adgoo.cn 1624975393 1624975345 48
+192.168.11.72 200.200.200.200:8081/IXC29106419759a8fb887e6a4c22ec27de9 adgoo.cn 1624975399 1624975345 54
+192.168.11.121 m701.music.126.net/20210708105155 9kuq.ttgykj.cn 1625711224 1625711220 4
+192.168.11.121 m701.music.126.net/20210708105211 9kuq.ttgykj.cn 1625711242 1625711220 22
+192.168.11.121 m10.music.126.net/20210708105103 9kuq.ttgykj.cn 1625711177 1625711155 22
+192.168.11.121 m701.music.126.net/20210708105618 9kuq.ttgykj.cn 1625711491 1625711483 8
+192.168.11.121 m10.music.126.net/20210708105709 9kuq.ttgykj.cn 1625711555 1625711500 55
+192.168.11.121 m10.music.126.net/20210708105742 9kuq.ttgykj.cn 1625711571 1625711530 41
+192.168.11.121 m701.music.126.net/20210708105747 9kuq.ttgykj.cn 1625711577 1625711530 47
+192.168.11.236 200.200.200.200:8081/IXC6d7bc4835308c1d9346cc8a78134f94c www.adgoo.cn 1625720389 1625720379 10
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 200.200.200.200:8081/IXC6fec455bcd8426aa775c81815d5baba9 www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625736584 1625736579 5
+192.168.11.236 live-s3m.mediav.com/nativevideo www.adgoo.cn 1625736593 1625736579 14
+192.168.11.236 200.200.200.200:8081/IXC3314248d5d422d343095d21e6e219efd www.adgoo.cn 1625736612 1625736579 33
+192.168.11.115 646-3-2.vod.tv.itc.cn/sohu biznews.sohu.com 1625750714 1625750655 59
+192.168.11.68 200.200.200.200:8081/IXC23d7c7e0f3c53280928269201e4a4a42 www.adgoo.cn 1628008054 1628008040 14
+192.168.11.68 200.200.200.200:8081/IXC1bac3a54af6394188a5ea9ecbc94eb3a www.adgoo.cn 1628008063 1628008040 23
+192.168.11.68 200.200.200.200:8081/IXCd2354bdaf2e009220ade6ca2a711976f www.adgoo.cn 1628008075 1628008040 35
+192.168.11.68 200.200.200.200:8081/IXC39580d618f6f38ddea6bc0f6ceb84542 www.adgoo.cn 1628008093 1628008040 53
+192.168.11.68 200.200.200.200:8081/IXC35650296cdc8d44e2f4d227b1154adfd www.adgoo.cn 1628045858 1628045840 18
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628045867 1628045840 27
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056239 1628056229 10
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056281 1628056229 52
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056284 1628056229 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056315 1628056258 57
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056315 1628056258 57
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056321 1628056266 55
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056324 1628056266 58
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056324 1628056266 58
+192.168.11.206 www.terra-it.cn/images www.terra-it.cn 1628056348 1628056290 58
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628056649 1628056639 10
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1628056656 1628056639 17
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059261 1628059245 16
+192.168.11.68 200.200.200.200:8081/IXCb4e13055ea4674a378706fcd4be5df1a www.terra-it.cn 1628059255 1628059245 10
+192.168.11.68 200.200.200.200:8081/IXC04afdc5c40c1f2ce3284296a90f09264 www.terra-it.cn 1628059285 1628059245 40
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059285 1628059245 40
+192.168.11.68 200.200.200.200:8081/IXCffd5fbb0ca67dcce704c98df51671541 www.terra-it.cn 1628059408 1628059398 10
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059423 1628059398 25
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059304 1628059245 59
+192.168.11.68 www.terra-it.cn/images www.terra-it.cn 1628059319 1628059259 60
+192.168.11.68 200.200.200.200:8081/IXC5e2c597557f3225e522710b70f17cf70 www.terra-it.cn 1628059396 1628059398 -2
+192.168.11.68 200.200.200.200:8081/IXC9cf00ae8d0ac23c8773b20f828e78451 www.terra-it.cn 1628059500 1628059442 58
+192.168.11.68 200.200.200.200:8081/IXC9cf00ae8d0ac23c8773b20f828e78451 www.terra-it.cn 1628059500 1628059442 58
+192.168.11.68 200.200.200.200:8081/IXCb4e13055ea4674a378706fcd4be5df1a www.terra-it.cn 1628059500 1628059442 58
+192.168.11.68 200.200.200.200:8081/IXCb4e13055ea4674a378706fcd4be5df1a www.terra-it.cn 1628059500 1628059442 58
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628072133 1628072130 3
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628077961 1628077957 4
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628078283 1628078282 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628078569 1628078567 2
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628078793 1628078792 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079036 1628079035 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079343 1628079339 4
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079614 1628079613 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628079838 1628079833 5
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628080123 1628080122 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628080320 1628080319 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628080542 1628080541 1
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628081054 1628081052 2
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1628081321 1628081319 2
+192.168.11.141 hlsflv-liveshow.bdstatic.com/live live.baidu.com 1624410877 1624410874 3
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400001UoPdq1zxbAk.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=CAB9DB58BD79372A7ECD815BBE0A128107243B79100A9E4E732F274A56952AB33C15F79A8139E841F6DF666A2DBA4D6A1254685A330AFF5C&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624412785 1624412728 57
+192.168.11.72 v2.dakang-energy.com/syjpc www.diezhan.me 1624413067 1624413053 14
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624413378 1624413361 17
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624413580 1624413566 14
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624413795 1624413779 16
+192.168.11.158 27.221.15.156/amobile.music.tc.qq.com 27.221.15.156 1624414008 1624414007 1
+192.168.11.158 153.0.197.28/amobile.music.tc.qq.com 153.0.197.28 1624414217 1624414207 10
+192.168.11.158 153.0.197.28/amobile.music.tc.qq.com 153.0.197.28 1624414416 1624414400 16
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624414646 1624414605 41
+192.168.11.158 27.221.15.154/amobile.music.tc.qq.com 27.221.15.154 1624414914 1624414861 53
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624415611 1624415608 3
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624415611 1624415608 3
+192.168.11.236 139.198.5.122/img www.nmgass.com.cn 1624415611 1624415608 3
+192.168.11.236 www.nmgshkxzzs.com/template www.nmgshkxzzs.com 1624415768 1624415758 10
+192.168.11.158 123.6.104.46/amobile.music.tc.qq.com 123.6.104.46 1624416247 1624416227 20
+192.168.11.158 27.221.15.157/amobile.music.tc.qq.com 27.221.15.157 1624416496 1624416482 14
+192.168.11.158 27.221.15.157/amobile.music.tc.qq.com 27.221.15.157 1624416665 1624416663 2
+192.168.11.158 123.6.104.49/amobile.music.tc.qq.com 123.6.104.49 1624417949 1624417939 10
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400003TrlI84BcfSN.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7C2A53CEDAE5D6B019D605815AB80E74EA20A7A19FE01F1F6F2CAA8FEC29F754D192105A53C271FCA8CD806EDE31A2A2B7FFB4276B5854AF&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624418247 1624418198 49
+192.168.11.158 isure6.stream.qqmusic.qq.com/O600003ihVqM1v2Nhg.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=7E2A823E6FFF9C9E096DD3FB31B3A0B22322F0836F903E93DEDB6992C48512FD2048E5423388BFAB29EC1D4A2BBEA1881420A38C785B1922&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624418490 1624418472 18
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400000dBhCW1lSSf0.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=FD83F980D44D9F59B4D5952F7D28FC0B8D2F693741C18A124823B2E1359AFA3FC44014E0835FD8D579962D15B8FE36F7D81312B11C5A9576&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624418717 1624418681 36
+192.168.11.158 isure6.stream.qqmusic.qq.com/O4000019Jeoh4NOyKC.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=0D8851635FFD08B3FB50A1B4D9090E086BD3660FCD58DCA33D59B5CEFEB245751F983B3ABCD57644228463D0E052FE90E1FE461177C055FE&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624419417 1624419398 19
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400001ln6zI1BKDm8.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=534C2082FD3B6CDCEACA8A1D1AD3EA96EF8369230D4CF7FA92A6A4CADF0C0F9ADF65DF9DB887E84AA51AEE8D7875EDBD4BEF967A35DDD6D9&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624419599 1624419584 15
+192.168.11.158 isure6.stream.qqmusic.qq.com/O400004ZbfIW0Yyf5I.ogg?guid=000000004b0bb43df29ebbf775fdffbe&vkey=52C7F24B3889F9663AFF19EC0AB584D3762E9194F3CD8ACA5AC732B13C679A39FD7016B308061EB40FC87A69858264A2D29EE39AD7865398&uin=1152921504878518693&fromtag=129 isure6.stream.qqmusic.qq.com 1624419746 1624419744 2
+192.168.11.121 61.179.119.147/amobile.music.tc.qq.com 61.179.119.147 1624423518 1624423527 -9
+192.168.11.121 61.179.119.144/amobile.music.tc.qq.com 61.179.119.144 1624424806 1624424784 22
+192.168.11.236 200.200.200.200:8081/IXC3f467549b7bf7f311c3d9fb40655dc55 www.adgoo.cn 1624431649 1624431641 8
+192.168.11.69 200.200.200.200/IXC82efdd473679d955984cf36ddf435c37 isure6.stream.qqmusic.qq.com 1624442446 1624442415 31
+192.168.11.215 ws.stream.qqmusic.qq.com/O600002FgoAR2TXaqd.ogg?guid=FC846A3269FF7EDEED22673B6DB50B27&vkey=CCFEB5FCF4DDFB4A32515FB2D40415460CA2E843C13DFC3F57111FDFBE623A486D03E5FD1C42F2FE68BA043F9BB5108B079F143847D608C9&uin=940158620&fromtag=77 ws.stream.qqmusic.qq.com 1627573880 1627573879 1
+192.168.11.215 ws.stream.qqmusic.qq.com/RS02000pJMah3cPHQw.mp3?guid=FC846A3269FF7EDEED22673B6DB50B27&vkey=AA5EB2B8DCFF3F3F9671EE76DD0061A75C0235D697741727F71A995592BE6B622160DB3E7E718E23F26DC22E838F0A529B2F969E1AC85D0B&uin=940158620&fromtag=83 ws.stream.qqmusic.qq.com 1627575180 1627575179 1
+192.168.11.215 200.200.200.200/IXC91186ae89ce6c638187d71868a66ccae ws.stream.qqmusic.qq.com 1627575432 1627575431 1
+192.168.11.68 stuff.cdn.biddingx.com/upload www.adgoo.cn 1627575438 1627575436 2
+192.168.11.68 live-s3m.mediav.com/nativevideo www.adgoo.cn 1627575438 1627575436 2
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615528 1627615479 49
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.211 down.qq.com/lol down.qq.com 1627615513 1627615479 34
+192.168.11.68 200.200.200.200:8081/IXC23d7c7e0f3c53280928269201e4a4a42 www.adgoo.cn 1627403240 1627403235 5
+192.168.11.216 106.120.158.152/amobile.music.tc.qq.com 106.120.158.152 1627458304 1627458260 44
+192.168.11.176 ysf.nosdn.127.net/webapi 1627464457 1627464397 60
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584302 1624584297 5
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584453 1624584452 1
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584474 1624584452 22
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1624584560 1624584559 1
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624536282 1624536283 -1
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624586431 1624586425 6
+192.168.11.228 www.mybuaa.com/static www.mybuaa.com 1624589540 1624589480 60
+192.168.11.72 live-s3m.mediav.com/nativevideo www.adgoo.cn 1624597257 1624597229 28
+192.168.11.216 182.254.52.251/amobile.music.tc.qq.com 182.254.52.251 1624601769 1624601763 6
+192.168.11.74 200.200.200.200:8081/IXC2e64b47a988838935319a66266ec43d3 www.adgoo.cn 1626917619 1626917615 4
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626922998 1626922970 28
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923004 1626922970 34
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923004 1626922970 34
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923004 1626922970 34
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923010 1626922970 40
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923010 1626922970 40
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923028 1626922970 58
+192.168.11.139 eeh.emerinfo.cn/file eeh.emerinfo.cn 1626923274 1626923260 14
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923305 1626923263 42
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923314 1626923263 51
+192.168.11.139 info.eeh.emerinfo.cn/u info.eeh.emerinfo.cn 1626923314 1626923263 51
+192.168.11.152 iadmusicmatvideo.music.126.net/b9596be35bc344e18120f789b9461f69.mp4 music.163.com 1626927777 1626927783 -6
+192.168.11.152 iadmusicmatvideo.music.126.net/158159623d634a5baecf867bf3b77292.mp4 music.163.com 1626927795 1626927783 12
+192.168.11.152 iadmusicmatvideo.music.126.net/865b70aa1ee64df9bb9b2cf0370d7734.mp4 music.163.com 1626927813 1626927783 30
+192.168.11.152 iadmusicmatvideo.music.126.net/1440f47638fe40a986c77530241837f2.mp4 music.163.com 1626927835 1626927783 52
+192.168.11.152 iadmusicmatvideo.music.126.net/e562b2cc84ab416c85c592f63bc9a3c1.mp4 music.163.com 1626927902 1626927895 7
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930216 1626930179 37
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930222 1626930179 43
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930216 1626930179 37
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930222 1626930179 43
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930234 1626930179 55
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930296 1626930300 -4
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930305 1626930300 5
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930311 1626930300 11
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930311 1626930300 11
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930335 1626930300 35
+192.168.11.96 hls.liveshow.lss-user.baidubce.com/live m.baidu.com 1626930348 1626930300 48
+192.168.11.117 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1626935295 1626935288 7
+192.168.11.117 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1626935295 1626935288 7
+192.168.11.117 sjs.sinajs.cn/blog7swf blog.sina.com.cn 1626935295 1626935288 7
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939548 1626939499 49
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939554 1626939499 55
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939610 1626939583 27
+192.168.11.117 sgls.static.xyimg.net/gcld_tc sgls.static.xyimg.net 1626939631 1626939583 48
+192.168.11.152 www.12371.cn/special www.12371.cn 1626939708 1626939665 43
+192.168.11.152 www.12371.cn/special www.12371.cn 1626939708 1626939665 43
+192.168.11.152 iadmusicmatvideo.music.126.net/0271915cf8044321821fc3549852fddc.mp4 music.163.com 1626946025 1626945990 35
+192.168.11.152 iadmusicmat.music.126.net/d23f8aef3e974b2ca8fcb99be300fe16.mp4 music.163.com 1626946047 1626945990 57
+192.168.11.152 200.200.200.200:8081/IXCd4e496a6970a1bf9ff0373ed191df558 music.163.com 1626946068 1626946024 44
+192.168.11.152 iadmusicmatvideo.music.126.net/b9596be35bc344e18120f789b9461f69.mp4 music.163.com 1626946142 1626946144 -2
+192.168.11.152 iadmusicmatvideo.music.126.net/c339b636279847e081dc7da0964c8cd9.mp4 music.163.com 1626946203 1626946144 59
+192.168.11.152 iadmusicmatvideo.music.126.net/1440f47638fe40a986c77530241837f2.mp4 music.163.com 1626946249 1626946254 -5
+192.168.11.152 iadmusicmatvideo.music.126.net/6431efa8bc004488ad0bdb7e946ea1aa.mp4 music.163.com 1626946160 1626946144 16
+192.168.11.176 m10.music.126.net/20210722191219 wx.atriumlee.com 1626950819 1626950814 5
+192.168.11.176 uclient.yunque360.com/audio uclient.yunque360.com 1626950819 1626950817 2
+192.168.11.176 uclient.yunque360.com/audio uclient.yunque360.com 1626950819 1626950817 2
+192.168.11.152 iadmusicmatvideo.music.126.net/a7120c3abd1947988b1db9cc978179e6.mp4 music.163.com 1626962499 1626962477 22
+192.168.11.152 200.200.200.200:8081/IXCfecf5c5ec4b4f35478612db0ed82e64c music.163.com 1626962524 1626962477 47
+192.168.11.152 200.200.200.200:8081/IXC7ec5550e16cfbf3525cb9d0c9e1b0eb2 music.163.com 1626962545 1626962533 12
+192.168.11.152 200.200.200.200:8081/IXCd4e496a6970a1bf9ff0373ed191df558 music.163.com 1626962567 1626962533 34
+192.168.11.152 200.200.200.200:8081/IXC313494517c114496bcff2e4b841f2ba8 music.163.com 1626962591 1626962533 58
+192.168.11.152 iadmusicmatvideo.music.126.net/e562b2cc84ab416c85c592f63bc9a3c1.mp4 music.163.com 1626962659 1626962653 6
diff --git a/target/classes/video_data.properties b/target/classes/video_data.properties index e7a25f9..1d448a4 100644 --- a/target/classes/video_data.properties +++ b/target/classes/video_data.properties @@ -4,7 +4,19 @@ kafka.avc.topic = AV-EVENT-COMPLETED-LOG kafka.av.topic = AV-EVENT-LOG # 时间窗口 -interval = 22 +# interval = 23 +intervalLeft = 60 +intervalRight = 15 # Spark地址 -Spark.master=192.168.10.9:7077
\ No newline at end of file +Spark.master=spark://192.168.10.9:7077 +# prefix算法的置信度 +prefixConfidence=0.3 +# 用于数据挖掘的历史时间,当前时间-最长间隔=最早使用的历史日志,注意这里的单位为天 +historyTrafficInterval=90 +# 候选集最大容量 +volume=10 +# Redis候选表中的过期时间,单位为天 +ExpirationTime=1 +# 最少进行序列挖掘的记录数目 +leastHistoryNum=5
\ No newline at end of file diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..de1ac31 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Thu Oct 21 15:42:14 CST 2021 +version=1.0-test +groupId=cn.an.iie +artifactId=VideoPortalDetection diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..b062ffd --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,24 @@ +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/pojo/DNSlog.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/Utils/URLHandleUtils.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mining/MiningService.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mapper/AVDataListMapper.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/client/VideoConsumer.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/config/Configurations.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mapper/HTTPListMapper.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/Utils/JedisPoolUtils.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mining/EffectEvaluation.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/intervalStatics/HuaYanHttpInterval.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/Utils/SqlSessionFactoryUtils.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/pojo/HTTPlog.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/config/DruidConfig.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/pojo/TrafficLog.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/pojo/AVlog.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/pojo/SSLlog.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/client/StaticFrequency.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/intervalStatics/Statistics.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mining/MiningModule.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mining/prefixSpark.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/config/GetConf.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mapper/SSLListMapper.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/mapper/DNSListMapper.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/main/java/cn/ac/iie/client/CKClient.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..8f58606 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1,7 @@ +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/Utils/URLHandleUtilsTest.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/pojo/HTTPlogTest.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/mining/MiningServiceTest.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/pojo/SSLlogTest.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/pojo/RedisTest.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/client/StaticFrequencyTest.java +/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java/cn/ac/iie/pojo/TrafficLogTest.java diff --git a/target/surefire-reports/TEST-cn.ac.iie.Utils.URLHandleUtilsTest.xml b/target/surefire-reports/TEST-cn.ac.iie.Utils.URLHandleUtilsTest.xml new file mode 100644 index 0000000..5d5a3ce --- /dev/null +++ b/target/surefire-reports/TEST-cn.ac.iie.Utils.URLHandleUtilsTest.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<testsuite tests="1" failures="0" name="cn.ac.iie.Utils.URLHandleUtilsTest" time="0.006" errors="0" skipped="0"> + <properties> + <property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/> + <property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib"/> + <property name="java.vm.version" value="25.202-b08"/> + <property name="gopherProxySet" value="false"/> + <property name="java.vm.vendor" value="Oracle Corporation"/> + <property name="maven.multiModuleProjectDirectory" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.vendor.url" value="http://java.oracle.com/"/> + <property name="path.separator" value=":"/> + <property name="guice.disable.misplaced.annotation.check" value="true"/> + <property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/> + <property name="file.encoding.pkg" value="sun.io"/> + <property name="user.country" value="CN"/> + <property name="sun.java.launcher" value="SUN_STANDARD"/> + <property name="sun.os.patch.level" value="unknown"/> + <property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> + <property name="user.dir" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.runtime.version" value="1.8.0_202-b08"/> + <property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/> + <property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/endorsed"/> + <property name="os.arch" value="x86_64"/> + <property name="java.io.tmpdir" value="/var/folders/9w/nf4m1w_94c7gmxgr94gd2yf00000gn/T/"/> + <property name="line.separator" value=" +"/> + <property name="java.vm.specification.vendor" value="Oracle Corporation"/> + <property name="os.name" value="Mac OS X"/> + <property name="classworlds.conf" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/bin/m2.conf"/> + <property name="sun.jnu.encoding" value="UTF-8"/> + <property name="java.library.path" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/> + <property name="maven.conf" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/conf"/> + <property name="java.specification.name" value="Java Platform API Specification"/> + <property name="java.class.version" value="52.0"/> + <property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> + <property name="os.version" value="10.16"/> + <property name="library.jansi.path" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/lib/jansi-native"/> + <property name="http.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="user.home" value="/Users/hezhengjie"/> + <property name="user.timezone" value="Asia/Shanghai"/> + <property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/> + <property name="java.specification.version" value="1.8"/> + <property name="file.encoding" value="UTF-8"/> + <property name="user.name" value="hezhengjie"/> + <property name="java.class.path" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/boot/plexus-classworlds-2.6.0.jar"/> + <property name="java.vm.specification.version" value="1.8"/> + <property name="sun.arch.data.model" value="64"/> + <property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre"/> + <property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher package -DskipTest"/> + <property name="java.specification.vendor" value="Oracle Corporation"/> + <property name="user.language" value="zh"/> + <property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/> + <property name="java.vm.info" value="mixed mode"/> + <property name="java.version" value="1.8.0_202"/> + <property name="java.ext.dirs" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java"/> + <property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/classes"/> + <property name="java.vendor" value="Oracle Corporation"/> + <property name="skipTest" value="true"/> + <property name="maven.home" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3"/> + <property name="file.separator" value="/"/> + <property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/> + <property name="sun.cpu.endian" value="little"/> + <property name="sun.io.unicode.encoding" value="UnicodeBig"/> + <property name="socksNonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="ftp.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="sun.cpu.isalist" value=""/> + </properties> + <testcase classname="cn.ac.iie.Utils.URLHandleUtilsTest" name="test" time="0.006"/> +</testsuite>
\ No newline at end of file diff --git a/target/surefire-reports/TEST-cn.ac.iie.client.StaticFrequencyTest.xml b/target/surefire-reports/TEST-cn.ac.iie.client.StaticFrequencyTest.xml new file mode 100644 index 0000000..5fbf471 --- /dev/null +++ b/target/surefire-reports/TEST-cn.ac.iie.client.StaticFrequencyTest.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<testsuite tests="1" failures="0" name="cn.ac.iie.client.StaticFrequencyTest" time="0" errors="0" skipped="0"> + <properties> + <property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/> + <property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib"/> + <property name="java.vm.version" value="25.202-b08"/> + <property name="gopherProxySet" value="false"/> + <property name="java.vm.vendor" value="Oracle Corporation"/> + <property name="maven.multiModuleProjectDirectory" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.vendor.url" value="http://java.oracle.com/"/> + <property name="path.separator" value=":"/> + <property name="guice.disable.misplaced.annotation.check" value="true"/> + <property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/> + <property name="file.encoding.pkg" value="sun.io"/> + <property name="user.country" value="CN"/> + <property name="sun.java.launcher" value="SUN_STANDARD"/> + <property name="sun.os.patch.level" value="unknown"/> + <property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> + <property name="user.dir" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.runtime.version" value="1.8.0_202-b08"/> + <property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/> + <property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/endorsed"/> + <property name="os.arch" value="x86_64"/> + <property name="java.io.tmpdir" value="/var/folders/9w/nf4m1w_94c7gmxgr94gd2yf00000gn/T/"/> + <property name="line.separator" value=" +"/> + <property name="java.vm.specification.vendor" value="Oracle Corporation"/> + <property name="os.name" value="Mac OS X"/> + <property name="classworlds.conf" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/bin/m2.conf"/> + <property name="sun.jnu.encoding" value="UTF-8"/> + <property name="java.library.path" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/> + <property name="maven.conf" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/conf"/> + <property name="java.specification.name" value="Java Platform API Specification"/> + <property name="java.class.version" value="52.0"/> + <property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> + <property name="os.version" value="10.16"/> + <property name="library.jansi.path" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/lib/jansi-native"/> + <property name="http.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="user.home" value="/Users/hezhengjie"/> + <property name="user.timezone" value="Asia/Shanghai"/> + <property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/> + <property name="java.specification.version" value="1.8"/> + <property name="file.encoding" value="UTF-8"/> + <property name="user.name" value="hezhengjie"/> + <property name="java.class.path" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/boot/plexus-classworlds-2.6.0.jar"/> + <property name="java.vm.specification.version" value="1.8"/> + <property name="sun.arch.data.model" value="64"/> + <property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre"/> + <property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher package -DskipTest"/> + <property name="java.specification.vendor" value="Oracle Corporation"/> + <property name="user.language" value="zh"/> + <property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/> + <property name="java.vm.info" value="mixed mode"/> + <property name="java.version" value="1.8.0_202"/> + <property name="java.ext.dirs" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java"/> + <property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/classes"/> + <property name="java.vendor" value="Oracle Corporation"/> + <property name="skipTest" value="true"/> + <property name="maven.home" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3"/> + <property name="file.separator" value="/"/> + <property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/> + <property name="sun.cpu.endian" value="little"/> + <property name="sun.io.unicode.encoding" value="UnicodeBig"/> + <property name="socksNonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="ftp.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="sun.cpu.isalist" value=""/> + </properties> + <testcase classname="cn.ac.iie.client.StaticFrequencyTest" name="testURLPattern" time="0"/> +</testsuite>
\ No newline at end of file diff --git a/target/surefire-reports/TEST-cn.ac.iie.mining.MiningServiceTest.xml b/target/surefire-reports/TEST-cn.ac.iie.mining.MiningServiceTest.xml new file mode 100644 index 0000000..ee0ed7d --- /dev/null +++ b/target/surefire-reports/TEST-cn.ac.iie.mining.MiningServiceTest.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<testsuite tests="6" failures="0" name="cn.ac.iie.mining.MiningServiceTest" time="2.718" errors="0" skipped="0"> + <properties> + <property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/> + <property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib"/> + <property name="java.vm.version" value="25.202-b08"/> + <property name="gopherProxySet" value="false"/> + <property name="java.vm.vendor" value="Oracle Corporation"/> + <property name="maven.multiModuleProjectDirectory" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.vendor.url" value="http://java.oracle.com/"/> + <property name="path.separator" value=":"/> + <property name="guice.disable.misplaced.annotation.check" value="true"/> + <property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/> + <property name="file.encoding.pkg" value="sun.io"/> + <property name="user.country" value="CN"/> + <property name="sun.java.launcher" value="SUN_STANDARD"/> + <property name="sun.os.patch.level" value="unknown"/> + <property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> + <property name="user.dir" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.runtime.version" value="1.8.0_202-b08"/> + <property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/> + <property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/endorsed"/> + <property name="os.arch" value="x86_64"/> + <property name="java.io.tmpdir" value="/var/folders/9w/nf4m1w_94c7gmxgr94gd2yf00000gn/T/"/> + <property name="line.separator" value=" +"/> + <property name="java.vm.specification.vendor" value="Oracle Corporation"/> + <property name="os.name" value="Mac OS X"/> + <property name="classworlds.conf" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/bin/m2.conf"/> + <property name="sun.jnu.encoding" value="UTF-8"/> + <property name="java.library.path" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/> + <property name="maven.conf" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/conf"/> + <property name="java.specification.name" value="Java Platform API Specification"/> + <property name="java.class.version" value="52.0"/> + <property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> + <property name="os.version" value="10.16"/> + <property name="library.jansi.path" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/lib/jansi-native"/> + <property name="http.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="user.home" value="/Users/hezhengjie"/> + <property name="user.timezone" value="Asia/Shanghai"/> + <property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/> + <property name="java.specification.version" value="1.8"/> + <property name="file.encoding" value="UTF-8"/> + <property name="user.name" value="hezhengjie"/> + <property name="java.class.path" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3/boot/plexus-classworlds-2.6.0.jar"/> + <property name="java.vm.specification.version" value="1.8"/> + <property name="sun.arch.data.model" value="64"/> + <property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre"/> + <property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher package -DskipTest"/> + <property name="java.specification.vendor" value="Oracle Corporation"/> + <property name="user.language" value="zh"/> + <property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/> + <property name="java.vm.info" value="mixed mode"/> + <property name="java.version" value="1.8.0_202"/> + <property name="java.ext.dirs" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java"/> + <property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/classes"/> + <property name="java.vendor" value="Oracle Corporation"/> + <property name="skipTest" value="true"/> + <property name="maven.home" value="/Users/hezhengjie/Code/Java_project/myMaven3.6.3/apache-maven-3.6.3"/> + <property name="file.separator" value="/"/> + <property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/> + <property name="sun.cpu.endian" value="little"/> + <property name="sun.io.unicode.encoding" value="UnicodeBig"/> + <property name="socksNonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="ftp.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="sun.cpu.isalist" value=""/> + </properties> + <testcase classname="cn.ac.iie.mining.MiningServiceTest" name="sequenceMining" time="0"/> + <testcase classname="cn.ac.iie.mining.MiningServiceTest" name="relateHostMiningTask" time="0"/> + <testcase classname="cn.ac.iie.mining.MiningServiceTest" name="consumeKafka" time="1.847"/> + <testcase classname="cn.ac.iie.mining.MiningServiceTest" name="judgeKey" time="0.118"/> + <testcase classname="cn.ac.iie.mining.MiningServiceTest" name="isMore10" time="0.753"/> + <testcase classname="cn.ac.iie.mining.MiningServiceTest" name="buildCandidate" time="0"/> +</testsuite>
\ No newline at end of file diff --git a/target/surefire-reports/TEST-cn.ac.iie.pojo.RedisTest.xml b/target/surefire-reports/TEST-cn.ac.iie.pojo.RedisTest.xml new file mode 100644 index 0000000..13f9f1c --- /dev/null +++ b/target/surefire-reports/TEST-cn.ac.iie.pojo.RedisTest.xml @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<testsuite tests="1" failures="0" name="cn.ac.iie.pojo.RedisTest" time="0.002" errors="1" skipped="0"> + <properties> + <property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/> + <property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib"/> + <property name="java.vm.version" value="25.202-b08"/> + <property name="gopherProxySet" value="false"/> + <property name="java.vm.vendor" value="Oracle Corporation"/> + <property name="maven.multiModuleProjectDirectory" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.vendor.url" value="http://java.oracle.com/"/> + <property name="path.separator" value=":"/> + <property name="guice.disable.misplaced.annotation.check" value="true"/> + <property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/> + <property name="file.encoding.pkg" value="sun.io"/> + <property name="user.country" value="CN"/> + <property name="sun.java.launcher" value="SUN_STANDARD"/> + <property name="sun.os.patch.level" value="unknown"/> + <property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> + <property name="user.dir" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.runtime.version" value="1.8.0_202-b08"/> + <property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/> + <property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/endorsed"/> + <property name="os.arch" value="x86_64"/> + <property name="java.io.tmpdir" value="/var/folders/9w/nf4m1w_94c7gmxgr94gd2yf00000gn/T/"/> + <property name="line.separator" value=" +"/> + <property name="java.vm.specification.vendor" value="Oracle Corporation"/> + <property name="os.name" value="Mac OS X"/> + <property name="maven.ext.class.path" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven-event-listener.jar"/> + <property name="classworlds.conf" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/bin/m2.conf"/> + <property name="sun.jnu.encoding" value="UTF-8"/> + <property name="java.library.path" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/> + <property name="maven.conf" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/conf"/> + <property name="java.specification.name" value="Java Platform API Specification"/> + <property name="java.class.version" value="52.0"/> + <property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> + <property name="idea.version2019.3.3" value="true"/> + <property name="os.version" value="10.16"/> + <property name="http.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="user.home" value="/Users/hezhengjie"/> + <property name="user.timezone" value="Asia/Shanghai"/> + <property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/> + <property name="java.specification.version" value="1.8"/> + <property name="file.encoding" value="UTF-8"/> + <property name="user.name" value="hezhengjie"/> + <property name="java.class.path" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/boot/plexus-classworlds-2.6.0.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar"/> + <property name="java.vm.specification.version" value="1.8"/> + <property name="sun.arch.data.model" value="64"/> + <property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre"/> + <property name="sun.java.command" value="org.codehaus.classworlds.Launcher -Didea.version2019.3.3 package"/> + <property name="java.specification.vendor" value="Oracle Corporation"/> + <property name="user.language" value="zh"/> + <property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/> + <property name="java.vm.info" value="mixed mode"/> + <property name="java.version" value="1.8.0_202"/> + <property name="java.ext.dirs" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java"/> + <property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/classes"/> + <property name="java.vendor" value="Oracle Corporation"/> + <property name="maven.home" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3"/> + <property name="file.separator" value="/"/> + <property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/> + <property name="sun.cpu.endian" value="little"/> + <property name="sun.io.unicode.encoding" value="UnicodeBig"/> + <property name="socksNonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="ftp.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="sun.cpu.isalist" value=""/> + </properties> + <testcase classname="cn.ac.iie.pojo.RedisTest" name="testJedis" time="0.002"> + <error message="Failed to create socket." type="redis.clients.jedis.exceptions.JedisConnectionException">redis.clients.jedis.exceptions.JedisConnectionException: Failed to create socket. + at redis.clients.jedis.DefaultJedisSocketFactory.createSocket(DefaultJedisSocketFactory.java:110) + at redis.clients.jedis.Connection.connect(Connection.java:226) + at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:135) + at redis.clients.jedis.Connection.sendCommand(Connection.java:163) + at redis.clients.jedis.Connection.sendCommand(Connection.java:158) + at redis.clients.jedis.BinaryClient.ping(BinaryClient.java:186) + at redis.clients.jedis.BinaryJedis.ping(BinaryJedis.java:380) + at cn.ac.iie.pojo.RedisTest.testJedis(RedisTest.java:13) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) + at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) + at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) + at org.junit.runners.ParentRunner.run(ParentRunner.java:363) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:252) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:141) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:112) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189) + at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165) + at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75) +Caused by: java.net.ConnectException: Connection refused (Connection refused) + at java.net.PlainSocketImpl.socketConnect(Native Method) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) + at java.net.Socket.connect(Socket.java:589) + at redis.clients.jedis.DefaultJedisSocketFactory.createSocket(DefaultJedisSocketFactory.java:80) + ... 36 more +</error> + <system-out>连接成功 +</system-out> + </testcase> +</testsuite>
\ No newline at end of file diff --git a/target/surefire-reports/TEST-cn.ac.iie.pojo.TrafficLogTest.xml b/target/surefire-reports/TEST-cn.ac.iie.pojo.TrafficLogTest.xml new file mode 100644 index 0000000..510df4f --- /dev/null +++ b/target/surefire-reports/TEST-cn.ac.iie.pojo.TrafficLogTest.xml @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<testsuite tests="1" failures="0" name="cn.ac.iie.pojo.TrafficLogTest" time="11.489" errors="0" skipped="0"> + <properties> + <property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/> + <property name="sun.boot.library.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib"/> + <property name="java.vm.version" value="25.202-b08"/> + <property name="gopherProxySet" value="false"/> + <property name="java.vm.vendor" value="Oracle Corporation"/> + <property name="maven.multiModuleProjectDirectory" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.vendor.url" value="http://java.oracle.com/"/> + <property name="path.separator" value=":"/> + <property name="guice.disable.misplaced.annotation.check" value="true"/> + <property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/> + <property name="file.encoding.pkg" value="sun.io"/> + <property name="user.country" value="CN"/> + <property name="sun.java.launcher" value="SUN_STANDARD"/> + <property name="sun.os.patch.level" value="unknown"/> + <property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> + <property name="user.dir" value="/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection"/> + <property name="java.runtime.version" value="1.8.0_202-b08"/> + <property name="java.awt.graphicsenv" value="sun.awt.CGraphicsEnvironment"/> + <property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/endorsed"/> + <property name="os.arch" value="x86_64"/> + <property name="java.io.tmpdir" value="/var/folders/9w/nf4m1w_94c7gmxgr94gd2yf00000gn/T/"/> + <property name="line.separator" value=" +"/> + <property name="java.vm.specification.vendor" value="Oracle Corporation"/> + <property name="os.name" value="Mac OS X"/> + <property name="maven.ext.class.path" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven-event-listener.jar"/> + <property name="classworlds.conf" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/bin/m2.conf"/> + <property name="sun.jnu.encoding" value="UTF-8"/> + <property name="java.library.path" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:."/> + <property name="maven.conf" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/conf"/> + <property name="java.specification.name" value="Java Platform API Specification"/> + <property name="java.class.version" value="52.0"/> + <property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> + <property name="idea.version2019.3.3" value="true"/> + <property name="os.version" value="10.16"/> + <property name="http.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="user.home" value="/Users/hezhengjie"/> + <property name="user.timezone" value="Asia/Shanghai"/> + <property name="java.awt.printerjob" value="sun.lwawt.macosx.CPrinterJob"/> + <property name="java.specification.version" value="1.8"/> + <property name="file.encoding" value="UTF-8"/> + <property name="user.name" value="hezhengjie"/> + <property name="java.class.path" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3/boot/plexus-classworlds-2.6.0.jar:/Applications/IntelliJ IDEA.app/Contents/lib/idea_rt.jar"/> + <property name="java.vm.specification.version" value="1.8"/> + <property name="sun.arch.data.model" value="64"/> + <property name="java.home" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre"/> + <property name="sun.java.command" value="org.codehaus.classworlds.Launcher -Didea.version2019.3.3 package"/> + <property name="java.specification.vendor" value="Oracle Corporation"/> + <property name="user.language" value="zh"/> + <property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/> + <property name="java.vm.info" value="mixed mode"/> + <property name="java.version" value="1.8.0_202"/> + <property name="java.ext.dirs" value="/Users/hezhengjie/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java"/> + <property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre/classes"/> + <property name="java.vendor" value="Oracle Corporation"/> + <property name="maven.home" value="/Applications/IntelliJ IDEA.app/Contents/plugins/maven/lib/maven3"/> + <property name="file.separator" value="/"/> + <property name="java.vendor.url.bug" value="http://bugreport.sun.com/bugreport/"/> + <property name="sun.cpu.endian" value="little"/> + <property name="sun.io.unicode.encoding" value="UnicodeBig"/> + <property name="socksNonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="ftp.nonProxyHosts" value="192.168.0.0/16|*.192.168.0.0/16|10.0.0.0/8|*.10.0.0.0/8|172.16.0.0/12|*.172.16.0.0/12|127.0.0.1|localhost|*.localhost|local|*.local"/> + <property name="sun.cpu.isalist" value=""/> + </properties> + <testcase classname="cn.ac.iie.pojo.TrafficLogTest" name="test" time="11.489"/> +</testsuite>
\ No newline at end of file diff --git a/target/surefire-reports/cn.ac.iie.Utils.URLHandleUtilsTest.txt b/target/surefire-reports/cn.ac.iie.Utils.URLHandleUtilsTest.txt new file mode 100644 index 0000000..70a603f --- /dev/null +++ b/target/surefire-reports/cn.ac.iie.Utils.URLHandleUtilsTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: cn.ac.iie.Utils.URLHandleUtilsTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec diff --git a/target/surefire-reports/cn.ac.iie.client.StaticFrequencyTest.txt b/target/surefire-reports/cn.ac.iie.client.StaticFrequencyTest.txt new file mode 100644 index 0000000..93be363 --- /dev/null +++ b/target/surefire-reports/cn.ac.iie.client.StaticFrequencyTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: cn.ac.iie.client.StaticFrequencyTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec diff --git a/target/surefire-reports/cn.ac.iie.mining.MiningServiceTest.txt b/target/surefire-reports/cn.ac.iie.mining.MiningServiceTest.txt new file mode 100644 index 0000000..72307ad --- /dev/null +++ b/target/surefire-reports/cn.ac.iie.mining.MiningServiceTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: cn.ac.iie.mining.MiningServiceTest +------------------------------------------------------------------------------- +Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.72 sec diff --git a/target/surefire-reports/cn.ac.iie.pojo.RedisTest.txt b/target/surefire-reports/cn.ac.iie.pojo.RedisTest.txt new file mode 100644 index 0000000..f5c58db --- /dev/null +++ b/target/surefire-reports/cn.ac.iie.pojo.RedisTest.txt @@ -0,0 +1,53 @@ +------------------------------------------------------------------------------- +Test set: cn.ac.iie.pojo.RedisTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.002 sec <<< FAILURE! +testJedis(cn.ac.iie.pojo.RedisTest) Time elapsed: 0.002 sec <<< ERROR! +redis.clients.jedis.exceptions.JedisConnectionException: Failed to create socket. + at redis.clients.jedis.DefaultJedisSocketFactory.createSocket(DefaultJedisSocketFactory.java:110) + at redis.clients.jedis.Connection.connect(Connection.java:226) + at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:135) + at redis.clients.jedis.Connection.sendCommand(Connection.java:163) + at redis.clients.jedis.Connection.sendCommand(Connection.java:158) + at redis.clients.jedis.BinaryClient.ping(BinaryClient.java:186) + at redis.clients.jedis.BinaryJedis.ping(BinaryJedis.java:380) + at cn.ac.iie.pojo.RedisTest.testJedis(RedisTest.java:13) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) + at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) + at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) + at org.junit.runners.ParentRunner.run(ParentRunner.java:363) + at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:252) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:141) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:112) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189) + at org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165) + at org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85) + at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75) +Caused by: java.net.ConnectException: Connection refused (Connection refused) + at java.net.PlainSocketImpl.socketConnect(Native Method) + at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) + at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) + at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) + at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) + at java.net.Socket.connect(Socket.java:589) + at redis.clients.jedis.DefaultJedisSocketFactory.createSocket(DefaultJedisSocketFactory.java:80) + ... 36 more + diff --git a/target/surefire-reports/cn.ac.iie.pojo.TrafficLogTest.txt b/target/surefire-reports/cn.ac.iie.pojo.TrafficLogTest.txt new file mode 100644 index 0000000..aa1e9e1 --- /dev/null +++ b/target/surefire-reports/cn.ac.iie.pojo.TrafficLogTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: cn.ac.iie.pojo.TrafficLogTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.841 sec diff --git a/target/surefire/surefire5303044865037046604tmp b/target/surefire/surefire5303044865037046604tmp new file mode 100644 index 0000000..34091aa --- /dev/null +++ b/target/surefire/surefire5303044865037046604tmp @@ -0,0 +1,231 @@ +#surefire +#Tue Oct 12 11:12:34 CST 2021 +classPathUrl.88=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-mapreduce-client-jobclient/3.2.0/hadoop-mapreduce-client-jobclient-3.2.0.jar +classPathUrl.87=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.5/jackson-jaxrs-base-2.9.5.jar +classPathUrl.86=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.5/jackson-jaxrs-json-provider-2.9.5.jar +childDelegation=false +classPathUrl.85=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.5/jackson-module-jaxb-annotations-2.9.5.jar +classPathUrl.84=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-yarn-common/3.2.0/hadoop-yarn-common-3.2.0.jar +classPathUrl.83=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-mapreduce-client-core/3.2.0/hadoop-mapreduce-client-core-3.2.0.jar +classPathUrl.82=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-yarn-client/3.2.0/hadoop-yarn-client-3.2.0.jar +classPathUrl.81=/Users/hezhengjie/.m2/repository/javax/xml/bind/jaxb-api/2.2.11/jaxb-api-2.2.11.jar +classPathUrl.80=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-yarn-api/3.2.0/hadoop-yarn-api-3.2.0.jar +runOrder=filesystem +classPathUrl.79=/Users/hezhengjie/.m2/repository/com/squareup/okio/okio/1.6.0/okio-1.6.0.jar +classPathUrl.78=/Users/hezhengjie/.m2/repository/com/squareup/okhttp/okhttp/2.7.5/okhttp-2.7.5.jar +classPathUrl.77=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-hdfs-client/3.2.0/hadoop-hdfs-client-3.2.0.jar +classPathUrl.76=/Users/hezhengjie/.m2/repository/dnsjava/dnsjava/2.1.7/dnsjava-2.1.7.jar +classPathUrl.75=/Users/hezhengjie/.m2/repository/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar +classPathUrl.74=/Users/hezhengjie/.m2/repository/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar +classPathUrl.73=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerby-xdr/1.0.1/kerby-xdr-1.0.1.jar +classPathUrl.72=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-identity/1.0.1/kerb-identity-1.0.1.jar +classPathUrl.71=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-server/1.0.1/kerb-server-1.0.1.jar +classPathUrl.70=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-admin/1.0.1/kerb-admin-1.0.1.jar +classPathUrl.69=/Users/hezhengjie/.m2/repository/org/apache/kerby/token-provider/1.0.1/token-provider-1.0.1.jar +classPathUrl.68=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-util/1.0.1/kerb-util-1.0.1.jar +classPathUrl.67=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-crypto/1.0.1/kerb-crypto-1.0.1.jar +classPathUrl.66=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-common/1.0.1/kerb-common-1.0.1.jar +classPathUrl.65=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerby-util/1.0.1/kerby-util-1.0.1.jar +classPathUrl.199=/Users/hezhengjie/.m2/repository/org/scala-lang/modules/scala-collection-compat_2.12/2.1.1/scala-collection-compat_2.12-2.1.1.jar +classPathUrl.64=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerby-asn1/1.0.1/kerby-asn1-1.0.1.jar +testClassesDirectory=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/target/test-classes +classPathUrl.198=/Users/hezhengjie/.m2/repository/org/typelevel/cats-kernel_2.12/2.0.0-M4/cats-kernel_2.12-2.0.0-M4.jar +classPathUrl.63=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerby-pkix/1.0.1/kerby-pkix-1.0.1.jar +classPathUrl.197=/Users/hezhengjie/.m2/repository/org/typelevel/algebra_2.12/2.0.0-M2/algebra_2.12-2.0.0-M2.jar +classPathUrl.62=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-core/1.0.1/kerb-core-1.0.1.jar +classPathUrl.196=/Users/hezhengjie/.m2/repository/org/typelevel/machinist_2.12/0.6.8/machinist_2.12-0.6.8.jar +classPathUrl.61=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerby-config/1.0.1/kerby-config-1.0.1.jar +classPathUrl.195=/Users/hezhengjie/.m2/repository/org/typelevel/spire-util_2.12/0.17.0-M1/spire-util_2.12-0.17.0-M1.jar +classPathUrl.60=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-client/1.0.1/kerb-client-1.0.1.jar +classPathUrl.194=/Users/hezhengjie/.m2/repository/org/typelevel/spire-platform_2.12/0.17.0-M1/spire-platform_2.12-0.17.0-M1.jar +classPathUrl.193=/Users/hezhengjie/.m2/repository/org/typelevel/spire-macros_2.12/0.17.0-M1/spire-macros_2.12-0.17.0-M1.jar +classPathUrl.192=/Users/hezhengjie/.m2/repository/org/typelevel/spire_2.12/0.17.0-M1/spire_2.12-0.17.0-M1.jar +classPathUrl.191=/Users/hezhengjie/.m2/repository/org/typelevel/macro-compat_2.12/1.1.1/macro-compat_2.12-1.1.1.jar +classPathUrl.190=/Users/hezhengjie/.m2/repository/com/chuusai/shapeless_2.12/2.3.3/shapeless_2.12-2.3.3.jar +classPathUrl.59=/Users/hezhengjie/.m2/repository/org/apache/kerby/kerb-simplekdc/1.0.1/kerb-simplekdc-1.0.1.jar +classPathUrl.58=/Users/hezhengjie/.m2/repository/org/apache/htrace/htrace-core4/4.1.0-incubating/htrace-core4-4.1.0-incubating.jar +classPathUrl.57=/Users/hezhengjie/.m2/repository/org/apache/curator/curator-client/2.12.0/curator-client-2.12.0.jar +classPathUrl.56=/Users/hezhengjie/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar +classPathUrl.55=/Users/hezhengjie/.m2/repository/net/minidev/json-smart/2.3/json-smart-2.3.jar +classPathUrl.189=/Users/hezhengjie/.m2/repository/pl/edu/icm/JLargeArrays/1.5/JLargeArrays-1.5.jar +classPathUrl.54=/Users/hezhengjie/.m2/repository/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar +classPathUrl.188=/Users/hezhengjie/.m2/repository/com/github/wendykierp/JTransforms/3.1/JTransforms-3.1.jar +classPathUrl.53=/Users/hezhengjie/.m2/repository/com/nimbusds/nimbus-jose-jwt/4.41.1/nimbus-jose-jwt-4.41.1.jar +classPathUrl.187=/Users/hezhengjie/.m2/repository/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar +classPathUrl.52=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-auth/3.2.0/hadoop-auth-3.2.0.jar +classPathUrl.186=/Users/hezhengjie/.m2/repository/org/scalanlp/breeze-macros_2.12/1.0/breeze-macros_2.12-1.0.jar +classPathUrl.51=/Users/hezhengjie/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar +classPathUrl.185=/Users/hezhengjie/.m2/repository/org/scalanlp/breeze_2.12/1.0/breeze_2.12-1.0.jar +classPathUrl.50=/Users/hezhengjie/.m2/repository/com/google/re2j/re2j/1.1/re2j-1.1.jar +classPathUrl.184=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-mllib-local_2.12/3.1.2/spark-mllib-local_2.12-3.1.2.jar +classPathUrl.183=/Users/hezhengjie/.m2/repository/net/sourceforge/f2j/arpack_combined_all/0.1/arpack_combined_all-0.1.jar +classPathUrl.182=/Users/hezhengjie/.m2/repository/com/github/fommil/netlib/core/1.1.2/core-1.1.2.jar +classPathUrl.181=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-graphx_2.12/3.1.2/spark-graphx_2.12-3.1.2.jar +classPathUrl.180=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-streaming_2.12/3.1.2/spark-streaming_2.12-3.1.2.jar +classPathUrl.49=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-configuration2/2.1.1/commons-configuration2-2.1.1.jar +classPathUrl.48=/Users/hezhengjie/.m2/repository/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar +classPathUrl.47=/Users/hezhengjie/.m2/repository/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar +classPathUrl.46=/Users/hezhengjie/.m2/repository/org/eclipse/jetty/jetty-servlet/9.3.24.v20180605/jetty-servlet-9.3.24.v20180605.jar +classPathUrl.45=/Users/hezhengjie/.m2/repository/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +classPathUrl.179=/Users/hezhengjie/.m2/repository/org/scala-lang/modules/scala-parser-combinators_2.12/1.1.2/scala-parser-combinators_2.12-1.1.2.jar +classPathUrl.44=/Users/hezhengjie/.m2/repository/commons-io/commons-io/2.5/commons-io-2.5.jar +classPathUrl.178=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-mllib_2.12/3.1.2/spark-mllib_2.12-3.1.2.jar +classPathUrl.43=/Users/hezhengjie/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar +classPathUrl.177=/Users/hezhengjie/.m2/repository/org/spark-project/spark/unused/1.0.0/unused-1.0.0.jar +classPathUrl.42=/Users/hezhengjie/.m2/repository/com/google/guava/guava/11.0.2/guava-11.0.2.jar +classPathUrl.176=/Users/hezhengjie/.m2/repository/org/apache/xbean/xbean-asm7-shaded/4.15/xbean-asm7-shaded-4.15.jar +classPathUrl.41=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-common/3.2.0/hadoop-common-3.2.0.jar +classPathUrl.175=/Users/hezhengjie/.m2/repository/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar +classPathUrl.40=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-client/3.2.0/hadoop-client-3.2.0.jar +classPathUrl.174=/Users/hezhengjie/.m2/repository/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar +classPathUrl.173=/Users/hezhengjie/.m2/repository/org/apache/parquet/parquet-jackson/1.10.1/parquet-jackson-1.10.1.jar +classPathUrl.172=/Users/hezhengjie/.m2/repository/org/apache/parquet/parquet-format/2.4.0/parquet-format-2.4.0.jar +classPathUrl.171=/Users/hezhengjie/.m2/repository/org/apache/parquet/parquet-hadoop/1.10.1/parquet-hadoop-1.10.1.jar +classPathUrl.170=/Users/hezhengjie/.m2/repository/org/apache/parquet/parquet-encoding/1.10.1/parquet-encoding-1.10.1.jar +enableAssertions=true +classPathUrl.39=/Users/hezhengjie/.m2/repository/com/twitter/chill-java/0.9.5/chill-java-0.9.5.jar +classPathUrl.38=/Users/hezhengjie/.m2/repository/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.jar +classPathUrl.203=/Users/hezhengjie/.m2/repository/com/sun/istack/istack-commons-runtime/3.0.8/istack-commons-runtime-3.0.8.jar +classPathUrl.37=/Users/hezhengjie/.m2/repository/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.jar +classPathUrl.202=/Users/hezhengjie/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.jar +classPathUrl.36=/Users/hezhengjie/.m2/repository/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.jar +classPathUrl.201=/Users/hezhengjie/.m2/repository/org/glassfish/jaxb/jaxb-runtime/2.3.2/jaxb-runtime-2.3.2.jar +classPathUrl.35=/Users/hezhengjie/.m2/repository/com/twitter/chill_2.12/0.9.5/chill_2.12-0.9.5.jar +classPathUrl.200=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-math3/3.4.1/commons-math3-3.4.1.jar +classPathUrl.169=/Users/hezhengjie/.m2/repository/org/apache/parquet/parquet-common/1.10.1/parquet-common-1.10.1.jar +classPathUrl.34=/Users/hezhengjie/.m2/repository/org/apache/avro/avro-ipc/1.8.2/avro-ipc-1.8.2.jar +isTrimStackTrace=true +classPathUrl.168=/Users/hezhengjie/.m2/repository/org/apache/parquet/parquet-column/1.10.1/parquet-column-1.10.1.jar +classPathUrl.33=/Users/hezhengjie/.m2/repository/org/apache/avro/avro-mapred/1.8.2/avro-mapred-1.8.2-hadoop2.jar +classPathUrl.167=/Users/hezhengjie/.m2/repository/org/apache/hive/hive-storage-api/2.7.2/hive-storage-api-2.7.2.jar +classPathUrl.32=/Users/hezhengjie/.m2/repository/org/tukaani/xz/1.5/xz-1.5.jar +classPathUrl.166=/Users/hezhengjie/.m2/repository/org/apache/orc/orc-mapreduce/1.5.12/orc-mapreduce-1.5.12.jar +classPathUrl.31=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar +classPathUrl.165=/Users/hezhengjie/.m2/repository/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.jar +classPathUrl.30=/Users/hezhengjie/.m2/repository/org/apache/avro/avro/1.8.2/avro-1.8.2.jar +classPathUrl.164=/Users/hezhengjie/.m2/repository/io/airlift/aircompressor/0.10/aircompressor-0.10.jar +classPathUrl.163=/Users/hezhengjie/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar +classPathUrl.162=/Users/hezhengjie/.m2/repository/com/google/protobuf/protobuf-java/2.5.0/protobuf-java-2.5.0.jar +classPathUrl.161=/Users/hezhengjie/.m2/repository/org/apache/orc/orc-shims/1.5.12/orc-shims-1.5.12.jar +classPathUrl.160=/Users/hezhengjie/.m2/repository/org/apache/orc/orc-core/1.5.12/orc-core-1.5.12.jar +excludes0=**/*$* +classPathUrl.29=/Users/hezhengjie/.m2/repository/com/thoughtworks/paranamer/paranamer/2.8/paranamer-2.8.jar +classPathUrl.28=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-core_2.12/3.1.2/spark-core_2.12-3.1.2.jar +classPathUrl.27=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-sketch_2.12/3.1.2/spark-sketch_2.12-3.1.2.jar +classPathUrl.26=/Users/hezhengjie/.m2/repository/com/univocity/univocity-parsers/2.9.1/univocity-parsers-2.9.1.jar +classPathUrl.25=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-sql_2.12/3.1.2/spark-sql_2.12-3.1.2.jar +classPathUrl.159=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-tags_2.12/3.1.2/spark-tags_2.12-3.1.2.jar +classPathUrl.24=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-pool2/2.9.0/commons-pool2-2.9.0.jar +classPathUrl.158=/Users/hezhengjie/.m2/repository/org/apache/arrow/arrow-memory-netty/2.0.0/arrow-memory-netty-2.0.0.jar +classPathUrl.23=/Users/hezhengjie/.m2/repository/redis/clients/jedis/3.6.1/jedis-3.6.1.jar +classPathUrl.157=/Users/hezhengjie/.m2/repository/com/google/flatbuffers/flatbuffers-java/1.9.0/flatbuffers-java-1.9.0.jar +classPathUrl.22=/Users/hezhengjie/.m2/repository/com/alibaba/druid/1.2.6/druid-1.2.6.jar +classPathUrl.156=/Users/hezhengjie/.m2/repository/org/apache/arrow/arrow-memory-core/2.0.0/arrow-memory-core-2.0.0.jar +classPathUrl.21=/Users/hezhengjie/.m2/repository/org/mybatis/mybatis/3.5.4/mybatis-3.5.4.jar +classPathUrl.155=/Users/hezhengjie/.m2/repository/org/apache/arrow/arrow-format/2.0.0/arrow-format-2.0.0.jar +classPathUrl.20=/Users/hezhengjie/.m2/repository/org/projectlombok/lombok/1.18.20/lombok-1.18.20.jar +classPathUrl.154=/Users/hezhengjie/.m2/repository/org/apache/arrow/arrow-vector/2.0.0/arrow-vector-2.0.0.jar +classPathUrl.153=/Users/hezhengjie/.m2/repository/org/antlr/antlr4-runtime/4.8-1/antlr4-runtime-4.8-1.jar +classPathUrl.152=/Users/hezhengjie/.m2/repository/org/codehaus/janino/commons-compiler/3.0.16/commons-compiler-3.0.16.jar +runStatisticsFile=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/.surefire-ACD354227ABEB7CE7FB8754D2280460167C498E5 +classPathUrl.151=/Users/hezhengjie/.m2/repository/org/codehaus/janino/janino/3.0.16/janino-3.0.16.jar +classPathUrl.150=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-catalyst_2.12/3.1.2/spark-catalyst_2.12-3.1.2.jar +classPathUrl.19=/Users/hezhengjie/.m2/repository/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar +classPathUrl.18=/Users/hezhengjie/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +classPathUrl.17=/Users/hezhengjie/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar +classPathUrl.16=/Users/hezhengjie/.m2/repository/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar +classPathUrl.15=/Users/hezhengjie/.m2/repository/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +classPathUrl.149=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-crypto/1.1.0/commons-crypto-1.1.0.jar +classPathUrl.14=/Users/hezhengjie/.m2/repository/ru/yandex/clickhouse/clickhouse-jdbc/0.3.1/clickhouse-jdbc-0.3.1.jar +classPathUrl.148=/Users/hezhengjie/.m2/repository/net/sf/py4j/py4j/0.10.9/py4j-0.10.9.jar +classPathUrl.13=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.10.2/jackson-core-2.10.2.jar +classPathUrl.9=/Users/hezhengjie/.m2/repository/org/lz4/lz4-java/1.7.1/lz4-java-1.7.1.jar +classPathUrl.147=/Users/hezhengjie/.m2/repository/net/razorvine/pyrolite/4.30/pyrolite-4.30.jar +classPathUrl.12=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.10.2/jackson-annotations-2.10.2.jar +classPathUrl.8=/Users/hezhengjie/.m2/repository/com/github/luben/zstd-jni/1.4.5-6/zstd-jni-1.4.5-6.jar +classPathUrl.146=/Users/hezhengjie/.m2/repository/oro/oro/2.0.8/oro-2.0.8.jar +classPathUrl.11=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.10.2/jackson-databind-2.10.2.jar +classPathUrl.7=/Users/hezhengjie/.m2/repository/org/apache/kafka/kafka-clients/2.7.0/kafka-clients-2.7.0.jar +classPathUrl.145=/Users/hezhengjie/.m2/repository/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar +classPathUrl.10=/Users/hezhengjie/.m2/repository/org/xerial/snappy/snappy-java/1.1.7.7/snappy-java-1.1.7.7.jar +classPathUrl.6=/Users/hezhengjie/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar +classPathUrl.144=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/module/jackson-module-paranamer/2.10.0/jackson-module-paranamer-2.10.0.jar +classPathUrl.5=/Users/hezhengjie/.m2/repository/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar +classPathUrl.143=/Users/hezhengjie/.m2/repository/com/fasterxml/jackson/module/jackson-module-scala_2.12/2.10.0/jackson-module-scala_2.12-2.10.0.jar +classPathUrl.4=/Users/hezhengjie/.m2/repository/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar +classPathUrl.142=/Users/hezhengjie/.m2/repository/io/dropwizard/metrics/metrics-jmx/4.1.1/metrics-jmx-4.1.1.jar +classPathUrl.3=/Users/hezhengjie/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +classPathUrl.141=/Users/hezhengjie/.m2/repository/io/dropwizard/metrics/metrics-graphite/4.1.1/metrics-graphite-4.1.1.jar +classPathUrl.2=/Users/hezhengjie/.m2/repository/junit/junit/4.12/junit-4.12.jar +classPathUrl.140=/Users/hezhengjie/.m2/repository/io/dropwizard/metrics/metrics-json/4.1.1/metrics-json-4.1.1.jar +classPathUrl.1=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/target/classes +classPathUrl.0=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/target/test-classes +failIfNoTests=false +reportsDirectory=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/target/surefire-reports +classPathUrl.139=/Users/hezhengjie/.m2/repository/io/dropwizard/metrics/metrics-jvm/4.1.1/metrics-jvm-4.1.1.jar +classPathUrl.138=/Users/hezhengjie/.m2/repository/io/dropwizard/metrics/metrics-core/4.1.1/metrics-core-4.1.1.jar +classPathUrl.137=/Users/hezhengjie/.m2/repository/com/clearspring/analytics/stream/2.9.6/stream-2.9.6.jar +classPathUrl.136=/Users/hezhengjie/.m2/repository/io/netty/netty-all/4.1.51.Final/netty-all-4.1.51.Final.jar +classPathUrl.135=/Users/hezhengjie/.m2/repository/org/javassist/javassist/3.25.0-GA/javassist-3.25.0-GA.jar +classPathUrl.134=/Users/hezhengjie/.m2/repository/org/glassfish/hk2/hk2-utils/2.6.1/hk2-utils-2.6.1.jar +classPathUrl.133=/Users/hezhengjie/.m2/repository/org/glassfish/hk2/hk2-api/2.6.1/hk2-api-2.6.1.jar +classPathUrl.132=/Users/hezhengjie/.m2/repository/org/glassfish/hk2/external/aopalliance-repackaged/2.6.1/aopalliance-repackaged-2.6.1.jar +classPathUrl.131=/Users/hezhengjie/.m2/repository/org/glassfish/hk2/hk2-locator/2.6.1/hk2-locator-2.6.1.jar +classPathUrl.130=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/inject/jersey-hk2/2.30/jersey-hk2-2.30.jar +includes2=**/*TestCase.java +includes1=**/*Test.java +includes0=**/Test*.java +providerConfiguration=org.apache.maven.surefire.junit4.JUnit4Provider +classPathUrl.129=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet-core/2.30/jersey-container-servlet-core-2.30.jar +classPathUrl.128=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/containers/jersey-container-servlet/2.30/jersey-container-servlet-2.30.jar +classPathUrl.127=/Users/hezhengjie/.m2/repository/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar +classPathUrl.126=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/media/jersey-media-jaxb/2.30/jersey-media-jaxb-2.30.jar +classPathUrl.125=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/core/jersey-server/2.30/jersey-server-2.30.jar +classPathUrl.124=/Users/hezhengjie/.m2/repository/org/glassfish/hk2/osgi-resource-locator/1.0.3/osgi-resource-locator-1.0.3.jar +classPathUrl.123=/Users/hezhengjie/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar +classPathUrl.122=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/core/jersey-common/2.30/jersey-common-2.30.jar +classPathUrl.121=/Users/hezhengjie/.m2/repository/org/glassfish/hk2/external/jakarta.inject/2.6.1/jakarta.inject-2.6.1.jar +classPathUrl.120=/Users/hezhengjie/.m2/repository/jakarta/ws/rs/jakarta.ws.rs-api/2.1.6/jakarta.ws.rs-api-2.1.6.jar +useManifestOnlyJar=true +surefireClassPathUrl.1=/Users/hezhengjie/.m2/repository/org/apache/maven/surefire/surefire-api/2.12.4/surefire-api-2.12.4.jar +surefireClassPathUrl.0=/Users/hezhengjie/.m2/repository/org/apache/maven/surefire/surefire-junit4/2.12.4/surefire-junit4-2.12.4.jar +classPathUrl.119=/Users/hezhengjie/.m2/repository/org/glassfish/jersey/core/jersey-client/2.30/jersey-client-2.30.jar +classPathUrl.118=/Users/hezhengjie/.m2/repository/org/json4s/json4s-scalap_2.12/3.7.0-M5/json4s-scalap_2.12-3.7.0-M5.jar +classPathUrl.117=/Users/hezhengjie/.m2/repository/org/json4s/json4s-ast_2.12/3.7.0-M5/json4s-ast_2.12-3.7.0-M5.jar +classPathUrl.116=/Users/hezhengjie/.m2/repository/org/json4s/json4s-core_2.12/3.7.0-M5/json4s-core_2.12-3.7.0-M5.jar +classPathUrl.115=/Users/hezhengjie/.m2/repository/org/json4s/json4s-jackson_2.12/3.7.0-M5/json4s-jackson_2.12-3.7.0-M5.jar +classPathUrl.114=/Users/hezhengjie/.m2/repository/org/scala-lang/scala-reflect/2.12.10/scala-reflect-2.12.10.jar +classPathUrl.113=/Users/hezhengjie/.m2/repository/org/scala-lang/scala-library/2.12.10/scala-library-2.12.10.jar +classPathUrl.112=/Users/hezhengjie/.m2/repository/org/scala-lang/modules/scala-xml_2.12/1.2.0/scala-xml_2.12-1.2.0.jar +classPathUrl.111=/Users/hezhengjie/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar +classPathUrl.110=/Users/hezhengjie/.m2/repository/org/roaringbitmap/shims/0.9.0/shims-0.9.0.jar +tc.6=cn.ac.iie.pojo.SSLlogTest +tc.5=cn.ac.iie.pojo.HTTPlogTest +tc.4=cn.ac.iie.pojo.RedisTest +testSuiteDefinitionTestSourceDirectory=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection/src/test/java +tc.3=cn.ac.iie.pojo.TrafficLogTest +tc.2=cn.ac.iie.client.StaticFrequencyTest +tc.1=cn.ac.iie.mining.MiningServiceTest +tc.0=cn.ac.iie.Utils.URLHandleUtilsTest +classPathUrl.109=/Users/hezhengjie/.m2/repository/org/roaringbitmap/RoaringBitmap/0.9.0/RoaringBitmap-0.9.0.jar +classPathUrl.108=/Users/hezhengjie/.m2/repository/com/ning/compress-lzf/1.0.3/compress-lzf-1.0.3.jar +classPathUrl.107=/Users/hezhengjie/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.jar +classPathUrl.106=/Users/hezhengjie/.m2/repository/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar +classPathUrl.105=/Users/hezhengjie/.m2/repository/com/google/code/findbugs/jsr305/3.0.0/jsr305-3.0.0.jar +classPathUrl.104=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-text/1.6/commons-text-1.6.jar +classPathUrl.99=/Users/hezhengjie/.m2/repository/org/apache/curator/curator-framework/2.13.0/curator-framework-2.13.0.jar +classPathUrl.103=/Users/hezhengjie/.m2/repository/org/apache/commons/commons-lang3/3.10/commons-lang3-3.10.jar +classPathUrl.98=/Users/hezhengjie/.m2/repository/org/apache/curator/curator-recipes/2.13.0/curator-recipes-2.13.0.jar +classPathUrl.102=/Users/hezhengjie/.m2/repository/jakarta/servlet/jakarta.servlet-api/4.0.3/jakarta.servlet-api-4.0.3.jar +classPathUrl.97=/Users/hezhengjie/.m2/repository/javax/activation/activation/1.1.1/activation-1.1.1.jar +classPathUrl.101=/Users/hezhengjie/.m2/repository/org/apache/yetus/audience-annotations/0.5.0/audience-annotations-0.5.0.jar +classPathUrl.96=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-unsafe_2.12/3.1.2/spark-unsafe_2.12-3.1.2.jar +classPathUrl.100=/Users/hezhengjie/.m2/repository/org/apache/zookeeper/zookeeper/3.4.14/zookeeper-3.4.14.jar +classPathUrl.95=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-network-shuffle_2.12/3.1.2/spark-network-shuffle_2.12-3.1.2.jar +classPathUrl.94=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-network-common_2.12/3.1.2/spark-network-common_2.12-3.1.2.jar +classPathUrl.93=/Users/hezhengjie/.m2/repository/org/fusesource/leveldbjni/leveldbjni-all/1.8/leveldbjni-all-1.8.jar +classPathUrl.92=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-kvstore_2.12/3.1.2/spark-kvstore_2.12-3.1.2.jar +classPathUrl.91=/Users/hezhengjie/.m2/repository/org/apache/spark/spark-launcher_2.12/3.1.2/spark-launcher_2.12-3.1.2.jar +classPathUrl.90=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-annotations/3.2.0/hadoop-annotations-3.2.0.jar +useSystemClassLoader=true +classPathUrl.89=/Users/hezhengjie/.m2/repository/org/apache/hadoop/hadoop-mapreduce-client-common/3.2.0/hadoop-mapreduce-client-common-3.2.0.jar diff --git a/target/surefire/surefire_06105614393697582874tmp b/target/surefire/surefire_06105614393697582874tmp new file mode 100644 index 0000000..42379bc --- /dev/null +++ b/target/surefire/surefire_06105614393697582874tmp @@ -0,0 +1,6 @@ +#surefire_0 +#Tue Oct 12 11:12:34 CST 2021 +idea.version2019.3.3=true +basedir=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection +user.dir=/Users/hezhengjie/Code/YSP_portal/Module2rd_CandidateSet/VideoPortalDetection +localRepository=/Users/hezhengjie/.m2/repository diff --git a/video_data.properties b/video_data.properties deleted file mode 100644 index 71f069b..0000000 --- a/video_data.properties +++ /dev/null @@ -1,6 +0,0 @@ -#statistic interval windows -#Fri Sep 17 16:45:09 CST 2021 -interval=22 -bootstrap.servers=192.168.10.28\:9092 -kafka.avc.topic=AV-EVENT-COMPLETED-LOG -kafka.av.topic=AV-EVENT-LOG |
