mirror of
https://github.com/woodchen-ink/Random-Api.git
synced 2025-07-18 14:02:03 +08:00
Compare commits
No commits in common. "main" and "v1.0.1" have entirely different histories.
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
@ -1,11 +0,0 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "npm" # See documentation for possible values
|
||||
directory: "/nodejs" # Location of package manifests
|
||||
schedule:
|
||||
interval: "weekly"
|
1592
.gitignore
vendored
1592
.gitignore
vendored
File diff suppressed because it is too large
Load Diff
13
README.md
13
README.md
@ -1,19 +1,12 @@
|
||||
# Random-Api 随机文件API
|
||||
|
||||
本项目已迁移至: [random-api-go](https://github.com/woodchen-ink/random-api-go)
|
||||
|
||||
**请给个star,谢谢**
|
||||
|
||||
## 使用链接
|
||||
|
||||
[https://random-api.czl.net](https://random-api.czl.net)
|
||||
[https://random-api.woodchen.ink](https://random-api.woodchen.ink)
|
||||
|
||||
## 部署、更新
|
||||
## 部署、更新和原理
|
||||
|
||||
请见我的帖子:[https://q58.org/questions/D1U1](https://q58.org/questions/D1U1)
|
||||
|
||||
|
||||
## 提示
|
||||
|
||||
使用图片时请手下留情,不要刷流量
|
||||
请见我的博客:[https://woodchen.ink/archives/1705367469203](https://woodchen.ink/archives/1705367469203)
|
||||
|
||||
|
67
eo.js
67
eo.js
@ -1,67 +0,0 @@
|
||||
// 外部 JSON 文件的 URL
|
||||
const CSV_PATHS_URL = 'https://random-api.czl.net/url.json';
|
||||
|
||||
addEventListener('fetch', event => {
|
||||
event.respondWith(handleRequest(event.request));
|
||||
});
|
||||
|
||||
/**
|
||||
* 处理客户端请求,并根据请求的URL路径获取对应的CSV文件中的随机一行的URL,然后重定向到该URL。
|
||||
*
|
||||
* @param {Request} request 客户端发起的请求对象。
|
||||
* @returns {Response} 根据不同的情况返回不同的响应对象。如果能够成功获取CSV路径配置且请求的路径在配置中找到对应的CSV文件,
|
||||
* 则重定向到该CSV文件中随机一行的URL;如果CSV路径配置无法获取或请求的路径未在配置中找到,
|
||||
* 则返回相应的错误页面或默认首页。
|
||||
*/
|
||||
async function handleRequest(request) {
|
||||
// 从CSV_PATHS_URL获取CSV文件路径配置
|
||||
const csvPathsResponse = await fetch(CSV_PATHS_URL);
|
||||
// 配置获取失败时,返回500错误响应
|
||||
if (!csvPathsResponse.ok) {
|
||||
return new Response('CSV paths configuration could not be fetched.', { status: 500 });
|
||||
}
|
||||
// 将配置响应体解析为JSON对象
|
||||
const csvPaths = await csvPathsResponse.json();
|
||||
|
||||
// 解析请求的URL路径
|
||||
const url = new URL(request.url);
|
||||
let path = url.pathname.slice(1); // 移除路径前的斜杠
|
||||
path = path.split('?')[0]; // 移除问号后的部分
|
||||
if (path.endsWith('/')) {
|
||||
path = path.slice(0, -1); // 移除路径后的斜杠
|
||||
}
|
||||
|
||||
// 分割路径为前缀和后缀
|
||||
const pathSegments = path.split('/');
|
||||
const prefix = pathSegments[0];
|
||||
const suffix = pathSegments.slice(1).join('/');
|
||||
|
||||
// 检查请求路径是否在CSV路径配置中
|
||||
if (prefix in csvPaths && suffix in csvPaths[prefix]) {
|
||||
// 根据配置获取对应的CSV文件URL
|
||||
const csvUrl = csvPaths[prefix][suffix];
|
||||
// 从CSV文件URL获取文件内容
|
||||
const fileArrayResponse = await fetch(csvUrl);
|
||||
// 文件内容获取失败时,返回500错误响应
|
||||
if (fileArrayResponse.ok) {
|
||||
// 处理CSV文件内容,过滤空行和注释行
|
||||
const fileArrayText = await fileArrayResponse.text();
|
||||
const fileArray = fileArrayText.split('\n').filter(line => Boolean(line) && !line.trim().startsWith('#'));
|
||||
|
||||
// 随机选择一行URL进行重定向
|
||||
const randomIndex = Math.floor(Math.random() * fileArray.length);
|
||||
const randomUrl = fileArray[randomIndex];
|
||||
|
||||
return Response.redirect(randomUrl, 302);
|
||||
} else {
|
||||
return new Response('CSV file could not be fetched.', { status: 500 });
|
||||
}
|
||||
} else {
|
||||
// 请求路径不在配置中,返回默认首页
|
||||
const indexHtmlResponse = await fetch('https://random-api.czl.net');
|
||||
return new Response(indexHtmlResponse.body, {
|
||||
headers: { 'Content-Type': 'text/html' },
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -2,10 +2,10 @@
|
||||
<html lang="zh-cmn-Hans" class="mdui-theme-dark">
|
||||
|
||||
<head>
|
||||
<title>随机文件api</title>
|
||||
<title>随机文件api-wood</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="shortcut icon" size="32x32" href="https://cdn-r2.czl.net/2023/06/20/649168ebc2b5d.png">
|
||||
<link rel="shortcut icon" size="32x32" href="https://cdn-r2.czl.net/woodchenink/2024/1/14/blackwood.jpg">
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
@ -88,9 +88,9 @@
|
||||
object-fit: cover;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/mdui/2.1.1/mdui.min.css">
|
||||
<script src="https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/mdui/2.1.1/mdui.global.js"></script>
|
||||
<script src="https://mirrors.sustech.edu.cn/cdnjs/ajax/libs/markdown-it/13.0.2/markdown-it.min.js"></script>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mdui/2.1.1/mdui.min.css">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/mdui/2.1.1/mdui.global.js"></script>
|
||||
<script src="https://cdnjs.czl.net/ajax/libs/markdown-it/13.0.2/markdown-it.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body class="mdui-prose">
|
||||
@ -110,7 +110,7 @@
|
||||
});
|
||||
|
||||
// 异步加载 index.md 文件内容
|
||||
fetch('./index.md')
|
||||
fetch('https://random-api.pages.dev/index.md')
|
||||
.then(response => response.text())
|
||||
.then(markdownText => {
|
||||
// 渲染 Markdown 内容
|
@ -7,9 +7,7 @@
|
||||
| 所有 | [https://random-api.czl.net/pic/all](https://random-api.czl.net/pic/all) |
|
||||
| CZL网站背景 | [https://random-api.czl.net/pic/czlwb](https://random-api.czl.net/pic/czlwb) |
|
||||
| 真人美女 | [https://random-api.czl.net/pic/truegirl](https://random-api.czl.net/pic/truegirl) |
|
||||
| 二次元全部 | [https://random-api.czl.net/pic/ecy](https://random-api.czl.net/pic/ecy) |
|
||||
| 二次元1 | [https://random-api.czl.net/pic/ecy1](https://random-api.czl.net/pic/ecy1) |
|
||||
| 二次元2 | [https://random-api.czl.net/pic/ecy2](https://random-api.czl.net/pic/ecy2) |
|
||||
| 二次元 | [https://random-api.czl.net/pic/ecy](https://random-api.czl.net/pic/ecy) |
|
||||
| 风景横图 | [https://random-api.czl.net/pic/fjht](https://random-api.czl.net/pic/fjht) |
|
||||
|
||||
---
|
||||
@ -19,14 +17,16 @@
|
||||
| ---------- | ---------------- |
|
||||
| 所有 | [https://random-api.czl.net/video/all](https://random-api.czl.net/video/all) |
|
||||
|
||||
## 功能测试(勿用)
|
||||
|
||||
## 部署和原理
|
||||
| 种类 | 请求地址 |
|
||||
| ---------- | ---------------- |
|
||||
| 格式测试 | [https://random-api.czl.net/pic/test](https://random-api.czl.net/pic/test) |
|
||||
|
||||
请见我的帖子:[https://q58.org/questions/D1U1](https://q58.org/questions/D1U1)
|
||||
|
||||
## 讨论
|
||||
## 部署、更新和原理
|
||||
|
||||
请在帖子下留言,我看到后会回复,谢谢。
|
||||
请见我的博客:[https://woodchen.ink/archives/1705367469203](https://woodchen.ink/archives/1705367469203)
|
||||
|
||||
**永久可用**
|
||||
|
198
nodejs/app.js
198
nodejs/app.js
@ -1,198 +0,0 @@
|
||||
import express from 'express';
|
||||
import fetch from 'node-fetch';
|
||||
import { LRUCache } from 'lru-cache'; // 使用命名导入
|
||||
import compression from 'compression';
|
||||
import winston from 'winston';
|
||||
import 'winston-daily-rotate-file';
|
||||
import cluster from 'cluster';
|
||||
import { cpus } from 'os';
|
||||
import path from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
|
||||
// 处理 __dirname
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = path.dirname(__filename);
|
||||
|
||||
const numCPUs = cpus().length;
|
||||
|
||||
const app = express();
|
||||
const port = 5003;
|
||||
|
||||
// 设置静态文件目录
|
||||
app.use(express.static(path.join(__dirname, 'public')));
|
||||
|
||||
// 外部 JSON 文件的 URL
|
||||
const CSV_PATHS_URL = 'https://random-api.czl.net/url.json';
|
||||
|
||||
// 设置缓存
|
||||
let csvPathsCache = null;
|
||||
let lastFetchTime = 0;
|
||||
const CACHE_DURATION = 60 * 1000 * 60 * 24; // 24小时
|
||||
|
||||
// 使用新的 LRUCache 构造函数
|
||||
const csvCache = new LRUCache({
|
||||
max: 100, // 最多缓存100个CSV文件
|
||||
ttl: 1000 * 60 * 60 * 24 // 缓存24小时
|
||||
});
|
||||
|
||||
// 日志名称格式
|
||||
const consoleFormat = winston.format.printf(({ level, message, timestamp }) => {
|
||||
return `${timestamp} ${level}: ${message}`;
|
||||
});
|
||||
// 自定义日志格式
|
||||
const customFormat = winston.format.printf(({ level, message, timestamp, ...metadata }) => {
|
||||
let msg = `${timestamp} [${level}]: `;
|
||||
|
||||
if (typeof message === 'object') {
|
||||
msg += JSON.stringify(message, null, 2);
|
||||
} else {
|
||||
msg += message;
|
||||
}
|
||||
|
||||
if (metadata.logs) {
|
||||
msg += '\n' + metadata.logs.map(log => JSON.stringify(log, null, 2)).join('\n');
|
||||
}
|
||||
|
||||
return msg;
|
||||
});
|
||||
// 设置日志
|
||||
const logger = winston.createLogger({
|
||||
level: 'info',
|
||||
format: winston.format.combine(
|
||||
winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss' }),
|
||||
customFormat
|
||||
),
|
||||
transports: [
|
||||
new winston.transports.Console(),
|
||||
new winston.transports.DailyRotateFile({
|
||||
filename: 'logs/application-%DATE%.log',
|
||||
datePattern: 'YYYY-MM-DD-HH',
|
||||
maxSize: '20m',
|
||||
maxFiles: '7d', // 日志保存的时间,超过这个时间的会自动删除旧文件
|
||||
zippedArchive: false // 禁用压缩
|
||||
})
|
||||
]
|
||||
});
|
||||
|
||||
// 日志缓冲
|
||||
let logBuffer = [];
|
||||
|
||||
// 增强的日志中间件
|
||||
app.use((req, res, next) => {
|
||||
const logEntry = {
|
||||
timestamp: new Date().toISOString(),
|
||||
ip: req.headers['x-forwarded-for'] || req.ip || req.connection.remoteAddress,
|
||||
method: req.method,
|
||||
path: req.originalUrl,
|
||||
protocol: req.protocol,
|
||||
host: req.get('Host'),
|
||||
userAgent: req.get('User-Agent'),
|
||||
referer: req.get('Referer') || 'N/A',
|
||||
accept: req.get('Accept'),
|
||||
acceptEncoding: req.get('Accept-Encoding'),
|
||||
acceptLanguage: req.get('Accept-Language')
|
||||
};
|
||||
|
||||
// 立即输出到控制台
|
||||
logger.info(logEntry);
|
||||
|
||||
// 添加到缓冲区,用于每小时写入文件
|
||||
logBuffer.push(logEntry);
|
||||
|
||||
next();
|
||||
});
|
||||
|
||||
// 每小时输出一次日志到文件
|
||||
setInterval(() => {
|
||||
if (logBuffer.length > 0) {
|
||||
logger.info('Hourly log', { logs: logBuffer });
|
||||
logBuffer = [];
|
||||
}
|
||||
}, 60 * 60 * 1000); // 每小时
|
||||
|
||||
async function getCsvPaths() {
|
||||
const now = Date.now();
|
||||
if (!csvPathsCache || now - lastFetchTime > CACHE_DURATION) {
|
||||
const response = await fetch(CSV_PATHS_URL);
|
||||
if (response.ok) {
|
||||
csvPathsCache = await response.json();
|
||||
lastFetchTime = now;
|
||||
}
|
||||
}
|
||||
return csvPathsCache;
|
||||
}
|
||||
|
||||
async function getCsvContent(url) {
|
||||
if (csvCache.has(url)) {
|
||||
return csvCache.get(url);
|
||||
}
|
||||
const response = await fetch(url);
|
||||
if (response.ok) {
|
||||
const content = await response.text();
|
||||
csvCache.set(url, content);
|
||||
return content;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
async function handleRequest(req, res) {
|
||||
try {
|
||||
const csvPaths = await getCsvPaths();
|
||||
if (!csvPaths) {
|
||||
return res.status(500).send('CSV paths configuration could not be fetched.');
|
||||
}
|
||||
|
||||
let path = req.path.slice(1);
|
||||
path = path.split('?')[0];
|
||||
if (path.endsWith('/')) {
|
||||
path = path.slice(0, -1);
|
||||
}
|
||||
|
||||
const pathSegments = path.split('/');
|
||||
const prefix = pathSegments[0];
|
||||
const suffix = pathSegments.slice(1).join('/');
|
||||
|
||||
if (prefix in csvPaths && suffix in csvPaths[prefix]) {
|
||||
const csvUrl = csvPaths[prefix][suffix];
|
||||
const fileArrayText = await getCsvContent(csvUrl);
|
||||
if (fileArrayText) {
|
||||
const fileArray = fileArrayText.split('\n').filter(line => Boolean(line) && !line.trim().startsWith('#'));
|
||||
const randomUrl = fileArray[Math.floor(Math.random() * fileArray.length)];
|
||||
return res.redirect(302, randomUrl);
|
||||
} else {
|
||||
return res.status(500).send('CSV file could not be fetched.');
|
||||
}
|
||||
} else {
|
||||
const indexHtmlResponse = await fetch('https://random-api.czl.net');
|
||||
const indexHtml = await indexHtmlResponse.text();
|
||||
return res.type('html').send(indexHtml);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error:', error);
|
||||
logger.error('Error:', error);
|
||||
res.status(500).send('Internal Server Error');
|
||||
}
|
||||
}
|
||||
|
||||
// 处理所有路由
|
||||
app.get('*', handleRequest);
|
||||
|
||||
// 使用 cluster 模块
|
||||
if (cluster.isMaster) {
|
||||
console.log(`Master ${process.pid} is running`);
|
||||
|
||||
// Fork workers.
|
||||
for (let i = 0; i < numCPUs; i++) {
|
||||
cluster.fork();
|
||||
}
|
||||
|
||||
cluster.on('exit', (worker, code, signal) => {
|
||||
console.log(`worker ${worker.process.pid} died`);
|
||||
});
|
||||
} else {
|
||||
// Workers can share any TCP connection
|
||||
// In this case it is an HTTP server
|
||||
app.listen(port, () => {
|
||||
console.log(`Worker ${process.pid} started on port ${port}`);
|
||||
});
|
||||
}
|
1168
nodejs/package-lock.json
generated
1168
nodejs/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,21 +0,0 @@
|
||||
{
|
||||
"name": "nodejs",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"test": "node app.js"
|
||||
},
|
||||
"type": "module",
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"compression": "^1.7.4",
|
||||
"express": "^4.17.1",
|
||||
"lru-cache": "^11.0.1",
|
||||
"node-fetch": "^3.3.2",
|
||||
"winston": "^3.3.3",
|
||||
"winston-daily-rotate-file": "^5.0.0"
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"pic": {
|
||||
"all": "https://random-api.czl.net/url/pic/all.csv",
|
||||
"fjht": "https://random-api.czl.net/url/pic/fjht.csv",
|
||||
"czlwb": "https://random-api.czl.net/url/pic/czl-website-background.csv",
|
||||
"truegirl": "https://random-api.czl.net/url/pic/truegirl.csv",
|
||||
"ecy": "https://random-api.czl.net/url/pic/ecy.csv",
|
||||
"ecy1": "https://random-api.czl.net/url/pic/ecy1.csv",
|
||||
"ecy2": "https://random-api.czl.net/url/pic/ecy2.csv"
|
||||
},
|
||||
"video": {
|
||||
"all": "https://random-api.czl.net/url/video/all.csv"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +0,0 @@
|
||||
https://random-api.czl.net/pic/truegirl
|
||||
|
||||
https://random-api.czl.net/pic/ecy1
|
||||
https://random-api.czl.net/pic/ecy2
|
||||
|
||||
https://random-api.czl.net/pic/fjht
|
||||
|
|
@ -1,46 +0,0 @@
|
||||
#春节背景
|
||||
#https://webp-sh.czl.net/r2/2023/12/31/65916acb9634f.jpg
|
||||
|
||||
#飞机背景
|
||||
https://webp-sh.czl.net/qiniu/2023/09/14/6501e735b146c.jpg
|
||||
|
||||
#CZL圣诞节背景
|
||||
https://webp-sh.czl.net/r2/2023/12/16/657da9007191a.jpg
|
||||
|
||||
#bing图纸
|
||||
|
||||
https://webp-sh.czl.net/r2/2024/02/18/65d0f633bd52c.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/18/65d0f618dcfef.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/18/65d0f60f95d7e.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/18/65d0f5fbc8fcc.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/18/65d0f5f8dce59.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/19/65d31fcf48fb3.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/19/65d31fee5061c.webp
|
||||
https://webp-sh.czl.net/r2/2024/02/20/65d462ce0f055.webp
|
||||
https://webp-sh.czl.net/r2/2024/03/07/65e97f284274b.webp
|
||||
https://webp-sh.czl.net/r2/2024/03/07/65e9808f5dc93.webp
|
||||
https://webp-sh.czl.net/r2/2024/03/07/65e980dda4b08.webp
|
||||
https://webp-sh.czl.net/r2/2024/03/07/65e981091a71b.webp
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b7c6d3.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b92497.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b748e6.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b740ad.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b722aa.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b9ae13.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/25/6600f61b74fcf.jpg
|
||||
https://webp-sh.czl.net/r2/2024/03/28/6604dc14ab33c.webp
|
||||
|
||||
#截止2024.04.26
|
||||
|
||||
# 2024.08.19自己拍的
|
||||
https://cdn-oracle.czl.net/img/2024/08/66c312512be41.jpeg
|
||||
https://webp-sh.czl.net/r2/img/2024/08/66c316ba5f036.jpeg
|
||||
https://webp-sh.czl.net/r2/img/2024/08/66c316ba81938.jpeg
|
||||
https://webp-sh.czl.net/r2/img/2024/08/66c316ba7323b.jpeg
|
||||
https://webp-sh.czl.net/r2/img/2024/08/66c316ba689ea.jpeg
|
||||
|
||||
# 2024.08.19bing图纸
|
||||
https://webp-sh.czl.net/r2/img/2024/08/66c3175e69bea.jpg
|
||||
https://webp-sh.czl.net/r2/img/2024/08/66c3175e6369f.jpg
|
||||
|
||||
|
|
@ -1,4 +0,0 @@
|
||||
# 1050张图片
|
||||
https://random-api.czl.net/pic/ecy1
|
||||
# 294张图片
|
||||
https://random-api.czl.net/pic/ecy2
|
|
File diff suppressed because it is too large
Load Diff
@ -1,301 +0,0 @@
|
||||
# https://api.ciyuandun.com/?like=pc-stocking-wallhaven 2024.05.06 PC端-黑丝
|
||||
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd6fd1418.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd6fef662.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd6feee7b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7021df8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd70385bc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd70576a6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7039987.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7072c1e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7087fdc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7088fa4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd70a9db1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd70a2cda.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd70c4a6f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd70c4e57.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd715f3e7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd71cf57f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd71d3c9d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd71e532f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd721d070.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd721c5f8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd722faf1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7255d22.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd725a15e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7260a35.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd728f556.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd728c396.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7298808.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd72a983f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd72c83e3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd72c02ea.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd72cd631.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd72eb618.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7302183.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd730545f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd731327d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd732d6cb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd733a040.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd734152a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd734bb1c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd735c481.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7368549.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd737a2c7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7380fde.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd738c591.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73a2425.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73ab953.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73c6910.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73c3785.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73be85a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73dec7d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd73e3bc5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd74100dc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd741afdd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd741dc4a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7438546.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd744230d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7451590.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd746cb8d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7480461.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd74980eb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7493122.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7493dca.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd74db82b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd751f8d8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd751df53.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd751a638.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7522415.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd751e2ea.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd754b8b1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75701b3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7582177.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7570cbe.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7586da0.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd757b951.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd759a520.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75b25b5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75d5dc1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75ee359.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75e1a13.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75e0103.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd75e6cfc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd76114ad.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd761dc40.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7635781.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7654cea.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd765785b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd764feaa.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7656109.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd768cd62.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd767fdfe.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7692a47.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd769e7fb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd76a9f8a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd76b4952.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd76b5eb5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd76e90d7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd76e91d7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd770c782.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7710d35.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd77403a4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd774fe5d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7750b91.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd77955a8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd77e81fa.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd785b562.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd78c4ff1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd78e93e2.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd78eb967.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd790d601.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd79d96fa.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7a4310f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7a820f9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7aa7344.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7b51b50.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7b642ff.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7c1d0a5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7c62e43.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7d08340.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7d0ef3a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7d63fa9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7d65155.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7d8a4e1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7d9b55e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e16f10.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e34926.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e2bb48.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e4b372.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e6bc0d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e76d89.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e7cf73.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7e9dc55.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7ea98f9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7eab3b5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7ebe536.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7ecd579.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7eec951.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7f0735d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7f05120.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7fe29d3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7fe24e8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd7feb5b5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd80244a1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd804528c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd804e2bc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd80e61e2.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd80f0ef3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd810992e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8132317.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd81435db.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd815aa5f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd817300d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd81a2bdf.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd81a573e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8202359.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd82542cf.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8254166.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8256341.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd82856e9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd828891d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd82ebfe5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd82eb8d3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd82eb359.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8355cdb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8355d94.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd835f208.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8388f6b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8390004.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8397f9a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd83a9e6e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8411601.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd841a5a4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd844ed79.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8469804.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd84c33b9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd84dc545.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd858b1bd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd85adff1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd85c13c6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd861510c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8658b70.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd868501d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8691d1e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8695622.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd869b0bd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd86c2afd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd86c377b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8705654.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd8718538.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638fd87342f8.webp
|
||||
|
||||
# https://api.ciyuandun.com/?like=pc-whiteHairs-wallhaven 2024.05.06 PC端-白毛
|
||||
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5549079.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff56364c6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff564b1c5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff567b4d5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff56f0fa3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff57c35e4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff57ca633.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5835837.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5829f14.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff584179b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff586680b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff586d042.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff589acad.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff58aa77b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff58bbd01.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff58dc53d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff591452b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff591db92.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff593c801.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff59323ae.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff596a966.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff597c0cb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff595e216.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5988f41.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff59b7036.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff59cba6c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff59c69cd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff59d1de5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a0567e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a1058f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a17ef7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a1787e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a2acb7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a5c39e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a40790.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a600a3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a66946.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a6aa2a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a95e04.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5a9f67a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5b2b50e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5b44c28.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5bec87c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5c7db6f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5c74dd3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5c7d977.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5cd145f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5cf029d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5d114fd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5d2af21.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5d2fa71.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5e9378c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5eb847d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5f7c7b6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5f81d0d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5f92c74.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5fb9bdb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5fd7391.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff5ff001a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff60198ec.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff603307b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff60e44ef.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff60ddc37.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6117569.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff615e6cc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff617a8de.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff61700c4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6171c0c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff61c797f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff61d1b35.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff62384a6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff625141f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff635ac51.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6369ae7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff637a46b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff638f568.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff63a2460.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff63b0c3a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff63e3cc1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff63e8dba.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff63efb55.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff642de36.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff643592b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6453170.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff647f6b9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6480f93.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff652b9c5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff652b687.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff653b05e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6524ea1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6573e31.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6577853.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff65bbafd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff66bb60f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff66eef31.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff672c7c3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff672c806.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff67be504.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff682400b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff682e1ee.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff68aba30.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff68cddd7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6963859.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6986a42.webp
|
||||
https://cdn-oracle.czl.net/img/2024/05/6638ff6a5ad7d.webp
|
||||
|
||||
|
|
@ -1,99 +0,0 @@
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de5c0637.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de5e96ee.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de726526.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de8ad390.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de931e32.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de9d0189.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6de9ded24.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dea0c485.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6deb11466.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6deb417a0.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6deb57f3d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6deb6b3dd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6debf3491.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dec16730.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dec18214.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dec2fa06.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dec86aae.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6ded6014b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6ded8dcd2.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dedcac4a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dedc42ea.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6def6258b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6defa37be.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df001efb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df04f52b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df053827.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df09b3ee.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df16606d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df16edbd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df19611a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df1c9bf9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df22ff02.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df22da68.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df2303c6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df250cc7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df25b145.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df26cacf.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df282be6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df2a2a32.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df28f06f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df31ec3f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df31ec3f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df3d6b47.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df3d6e56.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df3d5118.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df407949.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df4493e4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df4cd8a6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df5b510f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df5af893.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df658fcd.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df66ae51.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df670129.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df71285c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df72438d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df72841e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df7612f5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df757b87.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df76db0d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df783b92.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df7a4f88.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df838ce4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df8b2e74.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df90eaf3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df9157ed.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df928610.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df952099.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df9a4f61.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df9a4f61.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df9ad3c7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df9add7d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6df9d941a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa19ce6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa3f6d2.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa4d8b5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa593a9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa64f49.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa6d0e5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa7c08f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfa94ac9.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfad6b47.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfaddf6a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfade3fc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfb3af5f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfb4f4d6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfb52220.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfb5ced0.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfb70028.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfb80e25.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfba5d44.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfba5483.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfbac5b5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfbb6a17.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfc09cd6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfbeff8c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfc05e3a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/662a6dfc24dc6.webp
|
||||
|
||||
#截止2024.04.26
|
|
@ -1,110 +0,0 @@
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef170c4b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef170c4b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef17cedc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1a1dbf.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1b7387.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1bc83a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1c0f62.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1ce57b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef203481.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1f159b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef1e783e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef20bd21.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef229c98.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef22bd83.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef23eaf4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef240014.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef253db1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef26bdd0.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef262be3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef26faee.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef27868f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef290aaa.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef28f3b1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2a52c4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2a8843.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2a6bc4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2bf09a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2c74d3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2bfb34.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2d1391.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2dd1f6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2efdd6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2ef0b3.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef2eb5f1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef312b1f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef30c2c1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef321d3f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef32333e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef326242.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef33589e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3470c5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef34975f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef335c60.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef352436.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef35658f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef366eee.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef373368.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3803e8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef384bcf.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef382927.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef38e40c.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3a29ec.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3b4be1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3a7834.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef394d17.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3dbb55.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3ad4c8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef3b2bdb.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef408c10.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4074b6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef41bd4d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4219c8.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef420328.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef423f95.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef42b6f4.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef440365.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef45159e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef44f425.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef44d06e.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef43acbe.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef45af33.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef45fbf5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef474945.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef480ad6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef48add1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef47e8ad.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef48f333.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef48ff38.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4b0c91.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4b5a69.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4bdfdc.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4c1c06.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4b0c18.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4c2dff.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4ca652.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4cf9c1.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4ea8ff.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4f2856.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef503f9f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef4e9aa0.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef508093.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef500250.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef5130c7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef52c516.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef534bf7.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef525fa5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef53ad3f.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef5340f5.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef547b60.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef53f9ca.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef55c5e0.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef56305a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef57af5a.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef578e0d.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef57a517.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef56ed9b.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef58bfd6.webp
|
||||
https://cdn-oracle.czl.net/img/2024/04/661e8ef5791e8.webp
|
||||
|
||||
#截止2024.04.26
|
|
@ -1 +0,0 @@
|
||||
https://cdn-r2-cloudflare.czl.net/woodchenink/2024/1/16/%E6%B5%AA%E5%AE%A2%E5%89%91%E5%BF%83%E8%BF%BD%E5%BF%86%E7%AF%8730%E5%B8%A71080P%E6%97%A0%E5%A3%B0%E9%9F%B3.mp4
|
|
14
url.json
Normal file
14
url.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"pic": {
|
||||
"all": "https://random-api.pages.dev/url/pic/all.csv",
|
||||
"fjht": "https://random-api.pages.dev/url/pic/fjht.csv",
|
||||
"czlwb": "https://random-api.pages.dev/url/pic/czl-website-background.csv",
|
||||
"truegirl": "https://random-api.pages.dev/url/pic/truegirl.csv",
|
||||
"ecy": "https://random-api.pages.dev/url/pic/ecy.csv",
|
||||
"test": "https://random-api.pages.dev/url/pic/test.csv"
|
||||
},
|
||||
"video": {
|
||||
"all": "https://random-api.pages.dev/url/video/all.csv"
|
||||
}
|
||||
}
|
||||
|
6
url/pic/all.csv
Normal file
6
url/pic/all.csv
Normal file
@ -0,0 +1,6 @@
|
||||
https://random-api.czl.net/pic/truegirl
|
||||
|
||||
https://random-api.czl.net/pic/ecy
|
||||
https://random-api.czl.net/pic/ecy
|
||||
https://random-api.czl.net/pic/ecy
|
||||
|
|
34
url/pic/czl-website-background.csv
Normal file
34
url/pic/czl-website-background.csv
Normal file
@ -0,0 +1,34 @@
|
||||
#春节背景
|
||||
#https://cdn-r2.czl.net/2023/12/31/65916acb9634f.jpg
|
||||
|
||||
#飞机背景
|
||||
https://cdn-qiniu.czl.net/2023/09/14/6501e735b146c.jpg
|
||||
|
||||
#CZL圣诞节背景
|
||||
https://cdn-r2.czl.net/2023/12/16/657da9007191a.jpg
|
||||
|
||||
#bing图纸
|
||||
|
||||
https://cdn-r2.czl.net/2024/02/18/65d0f633bd52c.webp
|
||||
https://cdn-r2.czl.net/2024/02/18/65d0f618dcfef.webp
|
||||
https://cdn-r2.czl.net/2024/02/18/65d0f60f95d7e.webp
|
||||
https://cdn-r2.czl.net/2024/02/18/65d0f5fbc8fcc.webp
|
||||
https://cdn-r2.czl.net/2024/02/18/65d0f5f8dce59.webp
|
||||
https://cdn-r2.czl.net/2024/02/19/65d31fcf48fb3.webp
|
||||
https://cdn-r2.czl.net/2024/02/19/65d31fee5061c.webp
|
||||
https://cdn-r2.czl.net/2024/02/20/65d462ce0f055.webp
|
||||
https://cdn-r2.czl.net/2024/03/07/65e97f284274b.webp
|
||||
https://cdn-r2.czl.net/2024/03/07/65e9808f5dc93.webp
|
||||
https://cdn-r2.czl.net/2024/03/07/65e980dda4b08.webp
|
||||
https://cdn-r2.czl.net/2024/03/07/65e981091a71b.webp
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b7c6d3.jpg
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b92497.jpg
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b748e6.jpg
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b740ad.jpg
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b722aa.jpg
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b9ae13.jpg
|
||||
https://cdn-r2.czl.net/2024/03/25/6600f61b74fcf.jpg
|
||||
https://cdn-r2.czl.net/2024/03/28/6604dc14ab33c.webp
|
||||
|
||||
#截止2024.04.26
|
||||
|
|
1054
url/pic/ecy.csv
Normal file
1054
url/pic/ecy.csv
Normal file
File diff suppressed because it is too large
Load Diff
99
url/pic/fjht.csv
Normal file
99
url/pic/fjht.csv
Normal file
@ -0,0 +1,99 @@
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de5c0637.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de5e96ee.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de726526.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de8ad390.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de931e32.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de9d0189.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6de9ded24.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dea0c485.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6deb11466.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6deb417a0.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6deb57f3d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6deb6b3dd.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6debf3491.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dec16730.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dec18214.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dec2fa06.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dec86aae.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6ded6014b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6ded8dcd2.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dedcac4a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dedc42ea.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6def6258b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6defa37be.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df001efb.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df04f52b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df053827.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df09b3ee.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df16606d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df16edbd.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df19611a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df1c9bf9.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df22ff02.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df22da68.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df2303c6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df250cc7.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df25b145.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df26cacf.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df282be6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df2a2a32.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df28f06f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df31ec3f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df31ec3f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df3d6b47.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df3d6e56.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df3d5118.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df407949.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df4493e4.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df4cd8a6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df5b510f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df5af893.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df658fcd.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df66ae51.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df670129.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df71285c.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df72438d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df72841e.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df7612f5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df757b87.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df76db0d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df783b92.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df7a4f88.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df838ce4.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df8b2e74.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df90eaf3.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df9157ed.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df928610.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df952099.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df9a4f61.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df9a4f61.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df9ad3c7.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df9add7d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6df9d941a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa19ce6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa3f6d2.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa4d8b5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa593a9.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa64f49.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa6d0e5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa7c08f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfa94ac9.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfad6b47.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfaddf6a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfade3fc.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfb3af5f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfb4f4d6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfb52220.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfb5ced0.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfb70028.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfb80e25.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfba5d44.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfba5483.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfbac5b5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfbb6a17.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfc09cd6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfbeff8c.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfc05e3a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a6dfc24dc6.webp
|
||||
|
||||
#截止2024.04.26
|
|
6
url/pic/test.csv
Normal file
6
url/pic/test.csv
Normal file
@ -0,0 +1,6 @@
|
||||
#test
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a826655a8d.webp
|
||||
#test1
|
||||
|
||||
#test2
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/662a826655a8d.webp
|
|
110
url/pic/truegirl.csv
Normal file
110
url/pic/truegirl.csv
Normal file
@ -0,0 +1,110 @@
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef170c4b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef170c4b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef17cedc.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1a1dbf.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1b7387.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1bc83a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1c0f62.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1ce57b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef203481.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1f159b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef1e783e.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef20bd21.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef229c98.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef22bd83.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef23eaf4.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef240014.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef253db1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef26bdd0.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef262be3.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef26faee.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef27868f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef290aaa.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef28f3b1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2a52c4.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2a8843.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2a6bc4.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2bf09a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2c74d3.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2bfb34.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2d1391.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2dd1f6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2efdd6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2ef0b3.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef2eb5f1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef312b1f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef30c2c1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef321d3f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef32333e.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef326242.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef33589e.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3470c5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef34975f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef335c60.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef352436.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef35658f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef366eee.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef373368.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3803e8.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef384bcf.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef382927.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef38e40c.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3a29ec.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3b4be1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3a7834.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef394d17.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3dbb55.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3ad4c8.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef3b2bdb.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef408c10.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4074b6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef41bd4d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4219c8.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef420328.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef423f95.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef42b6f4.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef440365.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef45159e.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef44f425.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef44d06e.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef43acbe.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef45af33.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef45fbf5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef474945.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef480ad6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef48add1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef47e8ad.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef48f333.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef48ff38.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4b0c91.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4b5a69.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4bdfdc.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4c1c06.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4b0c18.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4c2dff.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4ca652.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4cf9c1.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4ea8ff.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4f2856.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef503f9f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef4e9aa0.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef508093.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef500250.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef5130c7.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef52c516.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef534bf7.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef525fa5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef53ad3f.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef5340f5.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef547b60.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef53f9ca.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef55c5e0.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef56305a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef57af5a.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef578e0d.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef57a517.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef56ed9b.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef58bfd6.webp
|
||||
https://ax8h1iijwmmg.objectstorage.ap-singapore-1.oci.customer-oci.com/n/ax8h1iijwmmg/b/bucket-20240403-0841/o/img/2024/04/661e8ef5791e8.webp
|
||||
|
||||
#截止2024.04.26
|
|
1
url/video/all.csv
Normal file
1
url/video/all.csv
Normal file
@ -0,0 +1 @@
|
||||
https://cdn-img.czl.net/woodchenink/2024/1/16/%E6%B5%AA%E5%AE%A2%E5%89%91%E5%BF%83%E8%BF%BD%E5%BF%86%E7%AF%8730%E5%B8%A71080P%E6%97%A0%E5%A3%B0%E9%9F%B3.mp4
|
|
@ -1,5 +1,5 @@
|
||||
// 外部 JSON 文件的 URL
|
||||
const CSV_PATHS_URL = 'https://random-api.czl.net/url.json';
|
||||
const CSV_PATHS_URL = 'https://random-api.pages.dev/url.json';
|
||||
|
||||
addEventListener('fetch', event => {
|
||||
event.respondWith(handleRequest(event.request));
|
||||
@ -58,7 +58,7 @@ async function handleRequest(request) {
|
||||
}
|
||||
} else {
|
||||
// 请求路径不在配置中,返回默认首页
|
||||
const indexHtmlResponse = await fetch('https://random-api.czl.net');
|
||||
const indexHtmlResponse = await fetch('https://random-api.pages.dev');
|
||||
return new Response(indexHtmlResponse.body, {
|
||||
headers: { 'Content-Type': 'text/html' },
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user