smms图床停止上传了,现在作者搞了别的服务,就想着换一个新的图床。想来想去,自建其实没必要,麻烦,还要考虑很多细节,CloudFlare的R2比较合适…刚好PicList也支持
目标是,博客中的那些smms的图片,通过脚本复制R2中,然后去替换博客的链接

CloudFlare R2 配置
在CloudFlare中找到生成api的地方,在PicList中配置AccessKeyId,SecretAccessKey,Bucket等,设置域名,天然的用上了cloudflare的CDN,完美
步骤
AI推荐我编写几个不同的脚本,大致过程是这样的:
- 从博客中搜索所有的
https://s2.loli.net开头的链接,生成json - 对json去重,并生成txt文件以供PicList上传(可以使用多链接一次性上传图片)
- 使用链接文本,在PicList上传图片,并通过PicList的脚本功能生成对应的新旧图片映射json
- 通过映射json,替换博客中的旧链接
但是实际上AI刚开始是不知道PicList有脚本功能的,我刚开始也是以为PicList可以使用终端命令直接上传,那么python可以搞定一套流程了。实际上终端命令是没有返回的,也就是说没办法知道替换之后的图片地址
我去看了官网才确定内置的脚本功能可以做到批量上传图片之后,生成新旧图片的链接的映射json
由此可见,AI其实检索功能还是不够强大
核心
PicList内置的脚本功能,可以使用fs模块,我设置了上传成功后执行,所以可以一次性大量提交链接并生成对应的映射文件
async function main(ctx) {
const inputList = ctx.input || [];
const outputList = ctx.output || [];
const map = [];
const len = Math.min(inputList.length, outputList.length);
for (let i = 0; i < len; i++) {
const inItem = inputList[i];
const outItem = outputList[i];
// ===== 统一提取 oldUrl =====
const oldUrl =
typeof inItem === "string"
? inItem
: inItem.url || inItem.originUrl || inItem.src;
// ===== 统一提取 newUrl =====
const newUrl =
outItem?.imgUrl ||
outItem?.url ||
outItem?.data?.url;
if (!oldUrl || !newUrl) {
ctx.log.info(`skip index ${i}`);
continue;
}
map.push({ old: oldUrl, new: newUrl });
}
fs.writeFileSync(
"map.json",
JSON.stringify(map, null, 2)
);
ctx.log.info(`done: ${map.length}`);
return ctx;
}
结
AI时代只要思路足够清晰,那么脚本什么的完全不需要去写,只需要去生成
欠缺的不是写低级代码的能力了,而是思路。自己清楚要解决的问题(定义问题),通过AI辅助,设计解决问题的流程(确定流程),剩下的就是细节和反复纠错了
附:变动的所有图片
[
{
"old": "https://s2.loli.net/2025/12/30/l6GmA2uxkodsWyt.webp",
"new": "https://img.sehnsucht.top/blog/ff4de57394fa18a7.png"
},
{
"old": "https://s2.loli.net/2024/04/09/jKhCNaIJP37FRzX.png",
"new": "https://img.sehnsucht.top/blog/b5d28a8d7ea7cc1c.png"
},
{
"old": "https://s2.loli.net/2024/04/09/fKVhmQSPjxlYZyG.png",
"new": "https://img.sehnsucht.top/blog/eb4f997bbe31e12e.png"
},
{
"old": "https://s2.loli.net/2023/03/20/U7k3ACMuLjOFzyq.png",
"new": "https://img.sehnsucht.top/blog/27d7c020fd781771.png"
},
{
"old": "https://s2.loli.net/2023/03/20/17jISvf3EetLUFV.png",
"new": "https://img.sehnsucht.top/blog/e49e19ae23898adb.png"
},
{
"old": "https://s2.loli.net/2022/12/11/yRPCWDa75pvMIHl.png",
"new": "https://img.sehnsucht.top/blog/f42ad0e55001d20e.png"
},
{
"old": "https://s2.loli.net/2022/12/11/OJTv7wXbZastkLe.png",
"new": "https://img.sehnsucht.top/blog/1426c552e1664a6e.png"
},
{
"old": "https://s2.loli.net/2022/12/11/S17jQPWoZLs8aCb.png",
"new": "https://img.sehnsucht.top/blog/e40ad8cedf898ca3.png"
},
{
"old": "https://s2.loli.net/2023/03/25/TfQjasSLPBH9Rov.png",
"new": "https://img.sehnsucht.top/blog/50c287b50ce8476a.png"
},
{
"old": "https://s2.loli.net/2023/04/02/hHBcP6MvnoEpJLV.png",
"new": "https://img.sehnsucht.top/blog/8ccd3222e92395ea.png"
},
{
"old": "https://s2.loli.net/2023/04/02/trP56ZGefowkHyD.jpg",
"new": "https://img.sehnsucht.top/blog/4c04e7b5d33623c1.png"
},
{
"old": "https://s2.loli.net/2023/04/02/aTUIeZWi7DH4yRj.jpg",
"new": "https://img.sehnsucht.top/blog/c71640e38779a6eb.png"
},
{
"old": "https://s2.loli.net/2023/04/02/N7HYlwygEnmFkZ9.png",
"new": "https://img.sehnsucht.top/blog/c78a3b0825b1b9e9.png"
},
{
"old": "https://s2.loli.net/2023/04/02/16MK2xhvUayNisW.jpg",
"new": "https://img.sehnsucht.top/blog/30e68f81d22ccbf5.png"
},
{
"old": "https://s2.loli.net/2023/04/02/2BjG97eIFrgXKp8.jpg",
"new": "https://img.sehnsucht.top/blog/50c6ea1b80e331a4.png"
},
{
"old": "https://s2.loli.net/2023/04/02/JP2gdVwh9UzM8Gr.jpg",
"new": "https://img.sehnsucht.top/blog/eff15aa2bfb8a7db.png"
},
{
"old": "https://s2.loli.net/2023/04/02/5A2Rn9VK7Ui1QFJ.jpg",
"new": "https://img.sehnsucht.top/blog/9701221aa55bae86.png"
},
{
"old": "https://s2.loli.net/2023/04/02/9OZiqsHuAvSj3yh.jpg",
"new": "https://img.sehnsucht.top/blog/23a5f08806d7684e.png"
},
{
"old": "https://s2.loli.net/2023/04/02/Fx5fVJo4IALRslh.jpg",
"new": "https://img.sehnsucht.top/blog/64787dbd0f274fb0.png"
},
{
"old": "https://s2.loli.net/2023/04/02/EVd3Oc2Ng168enZ.jpg",
"new": "https://img.sehnsucht.top/blog/ea822cc570a06bfd.png"
},
{
"old": "https://s2.loli.net/2023/04/02/tU8ApIyhb1WTeo2.jpg",
"new": "https://img.sehnsucht.top/blog/8033058750e5a28d.png"
},
{
"old": "https://s2.loli.net/2023/04/02/jAsofVQ9MUFk27N.jpg",
"new": "https://img.sehnsucht.top/blog/2c90333fd20e3f48.png"
},
{
"old": "https://s2.loli.net/2023/01/22/6gtb8ZUEPLwxej2.png",
"new": "https://img.sehnsucht.top/blog/aeb01bdf116cf7ba.png"
},
{
"old": "https://s2.loli.net/2023/01/10/eKFDpoW8qnJwrPj.jpg",
"new": "https://img.sehnsucht.top/blog/d6912a26edd63c6b.png"
},
{
"old": "https://s2.loli.net/2023/01/22/x6wz2AR4vUVyFWl.png",
"new": "https://img.sehnsucht.top/blog/7195afcbfd26b44c.png"
},
{
"old": "https://s2.loli.net/2023/01/22/5s8kB1SJu4FHq9U.png",
"new": "https://img.sehnsucht.top/blog/0c0c9416958a94fe.png"
},
{
"old": "https://s2.loli.net/2023/01/22/fa2uGLQJtjhovD4.png",
"new": "https://img.sehnsucht.top/blog/7d32312ed7c22bdc.png"
},
{
"old": "https://s2.loli.net/2023/01/10/HldLb713GcvkFtS.jpg",
"new": "https://img.sehnsucht.top/blog/029a3caf92d831f1.png"
},
{
"old": "https://s2.loli.net/2023/01/10/iQn6sxHgWXo1ykT.jpg",
"new": "https://img.sehnsucht.top/blog/bc8b3c461a7e2105.png"
},
{
"old": "https://s2.loli.net/2023/01/10/ZdTrnSNbOWD8wIA.jpg",
"new": "https://img.sehnsucht.top/blog/5bbf83d0d3ce5c81.png"
},
{
"old": "https://s2.loli.net/2023/01/10/1HWuhmlYSNj7GZR.jpg",
"new": "https://img.sehnsucht.top/blog/8c5a17afe3327eb4.png"
},
{
"old": "https://s2.loli.net/2023/01/10/zh8JCSxeRlpMtfw.jpg",
"new": "https://img.sehnsucht.top/blog/23c23ee12497474a.png"
},
{
"old": "https://s2.loli.net/2023/01/10/iWZdBlbw6fQ2z74.jpg",
"new": "https://img.sehnsucht.top/blog/11f3f88ad26ee9d1.png"
},
{
"old": "https://s2.loli.net/2023/01/10/HnEcI8xeBqRiGmC.jpg",
"new": "https://img.sehnsucht.top/blog/43df5c53d4944d9e.png"
},
{
"old": "https://s2.loli.net/2023/01/10/i2UrYTSRzuOC68t.jpg",
"new": "https://img.sehnsucht.top/blog/7b30ec42e28413b1.png"
},
{
"old": "https://s2.loli.net/2023/04/26/euO61kKMsVfGbzQ.jpg",
"new": "https://img.sehnsucht.top/blog/01fef1ee974fc999.png"
},
{
"old": "https://s2.loli.net/2023/04/26/4q7M5jkX3WlanTI.jpg",
"new": "https://img.sehnsucht.top/blog/34949f20aa55092a.png"
},
{
"old": "https://s2.loli.net/2023/04/26/JifX9dHrNzVG7gP.jpg",
"new": "https://img.sehnsucht.top/blog/586444d550aa5697.png"
},
{
"old": "https://s2.loli.net/2023/04/26/lpIjC3S8ZiOzPwc.jpg",
"new": "https://img.sehnsucht.top/blog/90ba07886a90ef15.png"
},
{
"old": "https://s2.loli.net/2023/04/26/m8oJ9VEKan6uwj2.jpg",
"new": "https://img.sehnsucht.top/blog/fccd8dab98117e2e.png"
},
{
"old": "https://s2.loli.net/2023/04/26/yBMSaRZr65NCbq9.jpg",
"new": "https://img.sehnsucht.top/blog/845d8b45772800b4.png"
},
{
"old": "https://s2.loli.net/2023/04/26/sOLjb9A1FUCqpvM.jpg",
"new": "https://img.sehnsucht.top/blog/f8ff4b70f3979a00.png"
},
{
"old": "https://s2.loli.net/2023/04/26/R3vQSUEZet4xdrq.jpg",
"new": "https://img.sehnsucht.top/blog/0147cf1c3a075f4e.png"
},
{
"old": "https://s2.loli.net/2023/04/26/CrI7ayv8FbDnZ2u.jpg",
"new": "https://img.sehnsucht.top/blog/8e87d9141cc720b1.png"
},
{
"old": "https://s2.loli.net/2023/04/26/52chCxyHLnvl9aR.jpg",
"new": "https://img.sehnsucht.top/blog/368ee490f2264add.png"
},
{
"old": "https://s2.loli.net/2023/04/26/LTGpltxrRbjy7ng.jpg",
"new": "https://img.sehnsucht.top/blog/9962aac3f7e7e7af.png"
},
{
"old": "https://s2.loli.net/2023/04/26/PCrK9u3Hml17FAp.jpg",
"new": "https://img.sehnsucht.top/blog/c73d4367a9820dfc.png"
},
{
"old": "https://s2.loli.net/2023/04/26/PzTAlgmxpUSBN7w.jpg",
"new": "https://img.sehnsucht.top/blog/0ccf4ef135931819.png"
},
{
"old": "https://s2.loli.net/2023/04/26/Gpb4tD75clPBsWE.jpg",
"new": "https://img.sehnsucht.top/blog/302d54771d0d750b.png"
},
{
"old": "https://s2.loli.net/2023/04/26/RjUxKYA8sQLb2k3.jpg",
"new": "https://img.sehnsucht.top/blog/fca6838b599ef186.png"
},
{
"old": "https://s2.loli.net/2023/04/26/p4hJsX1Lq9R2xUF.jpg",
"new": "https://img.sehnsucht.top/blog/e07a58943983cd74.png"
},
{
"old": "https://s2.loli.net/2023/04/26/DIW29aOdr5js8He.jpg",
"new": "https://img.sehnsucht.top/blog/d3b50aa0b218a8be.png"
},
{
"old": "https://s2.loli.net/2023/04/26/AeltnGiawBj281O.jpg",
"new": "https://img.sehnsucht.top/blog/646e2c499be2c476.png"
},
{
"old": "https://s2.loli.net/2023/04/26/ve6b45xrcoz9sNn.jpg",
"new": "https://img.sehnsucht.top/blog/129d67c4da29ecc1.png"
},
{
"old": "https://s2.loli.net/2023/04/26/JgWLmAiBDNOyrXM.jpg",
"new": "https://img.sehnsucht.top/blog/1f0600d515c2a34c.png"
},
{
"old": "https://s2.loli.net/2023/04/26/dFg7mQX8wNvCVRA.jpg",
"new": "https://img.sehnsucht.top/blog/9c3b5b073106aacf.png"
},
{
"old": "https://s2.loli.net/2023/04/26/qSdgUANXwG4mFWl.jpg",
"new": "https://img.sehnsucht.top/blog/d3740cbb74e43139.png"
},
{
"old": "https://s2.loli.net/2023/04/26/4tnlC6YRsBpGNLX.jpg",
"new": "https://img.sehnsucht.top/blog/f623282f90e39b17.png"
},
{
"old": "https://s2.loli.net/2023/04/26/u1YS9w5tGIsC67N.jpg",
"new": "https://img.sehnsucht.top/blog/a2843bf4802825f0.png"
},
{
"old": "https://s2.loli.net/2023/04/26/qcVLgtR5lIPvhTu.jpg",
"new": "https://img.sehnsucht.top/blog/fb02b5d9ab6089af.png"
},
{
"old": "https://s2.loli.net/2023/04/26/QymrEHOZctMaNC4.jpg",
"new": "https://img.sehnsucht.top/blog/b2f7fdd6463b081a.png"
},
{
"old": "https://s2.loli.net/2023/04/26/A2oESjNwMgZvlk6.jpg",
"new": "https://img.sehnsucht.top/blog/229cad4728fe207f.png"
},
{
"old": "https://s2.loli.net/2023/04/26/79LSJqzDCRxN5gZ.jpg",
"new": "https://img.sehnsucht.top/blog/169c2346d1cd8aea.png"
},
{
"old": "https://s2.loli.net/2023/04/26/WAqPaveworRXb2F.jpg",
"new": "https://img.sehnsucht.top/blog/84f3fd2de473f8d8.png"
},
{
"old": "https://s2.loli.net/2023/04/26/dS6IfXFAEN19LhV.jpg",
"new": "https://img.sehnsucht.top/blog/51d135280b0bff7a.png"
},
{
"old": "https://s2.loli.net/2023/04/26/vI5E4h7QPXcMCdY.jpg",
"new": "https://img.sehnsucht.top/blog/c45fac28b250d516.png"
},
{
"old": "https://s2.loli.net/2023/04/26/7LZF6WzYcCgMixE.jpg",
"new": "https://img.sehnsucht.top/blog/a8672ca7870930fb.png"
},
{
"old": "https://s2.loli.net/2023/04/26/rM74NLsgP8izKoG.jpg",
"new": "https://img.sehnsucht.top/blog/035b4fcac660430c.png"
},
{
"old": "https://s2.loli.net/2023/04/26/AR9kjOvMXemHtYi.jpg",
"new": "https://img.sehnsucht.top/blog/546c71b4915aff94.png"
},
{
"old": "https://s2.loli.net/2023/04/26/TbIUnHw2zRNMBjO.jpg",
"new": "https://img.sehnsucht.top/blog/a10041ef7ae802c1.png"
},
{
"old": "https://s2.loli.net/2023/04/26/tJp9eflGP2ZVBdF.jpg",
"new": "https://img.sehnsucht.top/blog/8896b9cb18ac300c.png"
},
{
"old": "https://s2.loli.net/2023/04/26/oyiZnBX3xdkQ9O8.jpg",
"new": "https://img.sehnsucht.top/blog/3f6f9145c054ef59.png"
},
{
"old": "https://s2.loli.net/2023/05/10/R1ZHt3ThfKsWSvc.jpg",
"new": "https://img.sehnsucht.top/blog/871ead3fc3340d61.png"
},
{
"old": "https://s2.loli.net/2023/05/10/kAFgZ1UPstc4SiG.jpg",
"new": "https://img.sehnsucht.top/blog/03d14923e31adbed.png"
},
{
"old": "https://s2.loli.net/2023/05/10/5UcvFyqnhT2ORpL.jpg",
"new": "https://img.sehnsucht.top/blog/f53652b3d0906710.png"
},
{
"old": "https://s2.loli.net/2023/05/10/eRw54J3jcPIVoNi.jpg",
"new": "https://img.sehnsucht.top/blog/98a99f7881fcfac1.png"
},
{
"old": "https://s2.loli.net/2023/05/10/ZUPogpka7qT8D1r.jpg",
"new": "https://img.sehnsucht.top/blog/a7fae3fc3687fed5.png"
},
{
"old": "https://s2.loli.net/2024/09/29/Rz7xeuyOgWipkAb.jpg",
"new": "https://img.sehnsucht.top/blog/2b391effca87e708.png"
},
{
"old": "https://s2.loli.net/2024/09/29/kvRc9fTxOK5qZ1z.jpg",
"new": "https://img.sehnsucht.top/blog/08b3828df3c05cca.png"
},
{
"old": "https://s2.loli.net/2024/09/29/Q4UAgzRy8bCqMFJ.jpg",
"new": "https://img.sehnsucht.top/blog/655487a4e4f84a3a.png"
},
{
"old": "https://s2.loli.net/2024/07/17/DJoMfU7NZ1eITFA.jpg",
"new": "https://img.sehnsucht.top/blog/b15114cfd6523b89.png"
},
{
"old": "https://s2.loli.net/2024/07/17/ljICWOvZ5wAz6hg.jpg",
"new": "https://img.sehnsucht.top/blog/6dc79b78dbdb1a95.png"
},
{
"old": "https://s2.loli.net/2024/07/17/yLASspo2mDitv7O.jpg",
"new": "https://img.sehnsucht.top/blog/a2f9bd30024b3d7c.png"
},
{
"old": "https://s2.loli.net/2024/07/17/oLwYxHbz7AP1G5V.jpg",
"new": "https://img.sehnsucht.top/blog/998a4575554be12d.png"
},
{
"old": "https://s2.loli.net/2023/11/01/Cr6Abnel29FHWkR.png",
"new": "https://img.sehnsucht.top/blog/5ebc1014fba8c0ea.png"
},
{
"old": "https://s2.loli.net/2024/01/07/XKPa5MNvUulIAn7.jpg",
"new": "https://img.sehnsucht.top/blog/661be9bf6de95893.png"
},
{
"old": "https://s2.loli.net/2024/01/07/rt1veOyBVoixlWZ.jpg",
"new": "https://img.sehnsucht.top/blog/479ade1c06de957a.png"
},
{
"old": "https://s2.loli.net/2024/07/16/OGsJvbPqmTeuy8f.jpg",
"new": "https://img.sehnsucht.top/blog/75b99f5c9be1b0d3.png"
},
{
"old": "https://s2.loli.net/2024/12/15/CBom786qkK2IzEP.jpg",
"new": "https://img.sehnsucht.top/blog/7d25cebd7f185700.png"
},
{
"old": "https://s2.loli.net/2024/12/15/JtUQF4PD1IhRMxl.jpg",
"new": "https://img.sehnsucht.top/blog/0e0637262a165b2e.png"
},
{
"old": "https://s2.loli.net/2025/12/30/SjhlcCJY76WGrOX.jpg",
"new": "https://img.sehnsucht.top/blog/25d651806d98def8.png"
},
{
"old": "https://s2.loli.net/2025/12/30/aHiPfxu7rcXbChl.jpg",
"new": "https://img.sehnsucht.top/blog/695640585969a8cc.png"
},
{
"old": "https://s2.loli.net/2025/12/30/UShWIG3Z9DfeicE.jpg",
"new": "https://img.sehnsucht.top/blog/4b85a08f0fc8f4af.png"
},
{
"old": "https://s2.loli.net/2025/12/30/Np4RCzd3chxfegy.jpg",
"new": "https://img.sehnsucht.top/blog/3f300873741c9af6.png"
},
{
"old": "https://s2.loli.net/2025/12/30/8BSu7YgrnCZx94R.jpg",
"new": "https://img.sehnsucht.top/blog/575b0aef9f2837ee.png"
},
{
"old": "https://s2.loli.net/2025/12/30/XpOKBAvoLhJYT8l.jpg",
"new": "https://img.sehnsucht.top/blog/6ff028efb7e2aaf0.png"
},
{
"old": "https://s2.loli.net/2025/12/30/Sle5EK6kmIryaYC.jpg",
"new": "https://img.sehnsucht.top/blog/ed6ce607075e43ab.png"
},
{
"old": "https://s2.loli.net/2025/12/30/T3sKdj5LFie1fpl.jpg",
"new": "https://img.sehnsucht.top/blog/67f39aab89c8e01b.png"
},
{
"old": "https://s2.loli.net/2025/12/30/49rMgwcjSIyvdYK.jpg",
"new": "https://img.sehnsucht.top/blog/42ab2477ac937cc5.png"
},
{
"old": "https://s2.loli.net/2025/12/30/yWkoibJHAN7G1Z3.jpg",
"new": "https://img.sehnsucht.top/blog/b3b7612b275175d0.png"
},
{
"old": "https://s2.loli.net/2026/01/10/jpO4PHINUCfbvEl.jpg",
"new": "https://img.sehnsucht.top/blog/d121ac47878e3412.png"
},
{
"old": "https://s2.loli.net/2026/01/10/7YyFxPOCBgDEc54.jpg",
"new": "https://img.sehnsucht.top/blog/8f14c4f4499aad2f.png"
},
{
"old": "https://s2.loli.net/2026/01/10/tOpiAwjTcQFhkIW.jpg",
"new": "https://img.sehnsucht.top/blog/1061f8da04a2ad29.png"
},
{
"old": "https://s2.loli.net/2026/01/10/R4kVPmjGioqleXa.jpg",
"new": "https://img.sehnsucht.top/blog/2ea9fd3a1f184b17.png"
},
{
"old": "https://s2.loli.net/2026/01/10/GvhSWQbZyOalIVR.jpg",
"new": "https://img.sehnsucht.top/blog/cc54baa5218fba7e.png"
},
{
"old": "https://s2.loli.net/2026/01/10/LhoOCGjVNZUcs8n.jpg",
"new": "https://img.sehnsucht.top/blog/ea0cd402103b86dc.png"
},
{
"old": "https://s2.loli.net/2026/01/10/ZBh1qtP3JlxHM9e.jpg",
"new": "https://img.sehnsucht.top/blog/9069a0aeaf774f8a.png"
},
{
"old": "https://s2.loli.net/2026/01/10/NUY7bckFXRJdKqA.jpg",
"new": "https://img.sehnsucht.top/blog/9a7516908f7a8317.png"
},
{
"old": "https://s2.loli.net/2026/01/10/oi4MZYPNVmGETSt.jpg",
"new": "https://img.sehnsucht.top/blog/194426497f157037.png"
},
{
"old": "https://s2.loli.net/2026/01/10/kvlFLqEuwSUI8Cg.jpg",
"new": "https://img.sehnsucht.top/blog/8f23ec6781c1d622.png"
},
{
"old": "https://s2.loli.net/2026/01/10/f28imIFaUONjR6Y.jpg",
"new": "https://img.sehnsucht.top/blog/fc002300b495a53a.png"
},
{
"old": "https://s2.loli.net/2026/01/10/JfXLW3lkGDc624v.jpg",
"new": "https://img.sehnsucht.top/blog/f4a6355a32800688.png"
},
{
"old": "https://s2.loli.net/2026/01/10/Qrt9pYSNUJDzmFk.jpg",
"new": "https://img.sehnsucht.top/blog/5c824c5975deac47.png"
},
{
"old": "https://s2.loli.net/2026/01/10/pAsoNSUiPzTe9Qk.jpg",
"new": "https://img.sehnsucht.top/blog/d61addf0637dca42.png"
},
{
"old": "https://s2.loli.net/2026/01/10/qMpxYf6DPUhWlo4.jpg",
"new": "https://img.sehnsucht.top/blog/0ba9cefe3d7362f1.png"
},
{
"old": "https://s2.loli.net/2026/01/10/17dU94eO8oQ5IqV.jpg",
"new": "https://img.sehnsucht.top/blog/9faa1b620758e9a7.png"
},
{
"old": "https://s2.loli.net/2026/01/10/x4HGJleiWvBn5AY.jpg",
"new": "https://img.sehnsucht.top/blog/65636e1888b3f741.png"
},
{
"old": "https://s2.loli.net/2026/01/10/WHeBT2Du7Z1Sqbh.jpg",
"new": "https://img.sehnsucht.top/blog/bb24f3aee2a1ddfa.png"
},
{
"old": "https://s2.loli.net/2026/01/10/5sjpVlQmZwuX14v.jpg",
"new": "https://img.sehnsucht.top/blog/13b960eb915edbc3.png"
},
{
"old": "https://s2.loli.net/2026/01/10/Os3e2BUyzqxbjmo.jpg",
"new": "https://img.sehnsucht.top/blog/ee44bb5b71b54600.png"
},
{
"old": "https://s2.loli.net/2026/01/10/x7ySjMQlLEqFXiK.jpg",
"new": "https://img.sehnsucht.top/blog/16790055a6470c6e.png"
},
{
"old": "https://s2.loli.net/2023/04/02/uaCGmcAbep7IUgZ.jpg",
"new": "https://img.sehnsucht.top/blog/34bdedf919b7baef.png"
},
{
"old": "https://s2.loli.net/2023/03/30/2nbaz4hSZXEwtJ8.jpg",
"new": "https://img.sehnsucht.top/blog/1cf59a8a2b7a8078.png"
},
{
"old": "https://s2.loli.net/2023/03/12/MbxVTAc3sNhPOur.png",
"new": "https://img.sehnsucht.top/blog/6a91ef47c98cb8b3.png"
},
{
"old": "https://s2.loli.net/2023/03/12/lUn8GS2RHrzhQEo.png",
"new": "https://img.sehnsucht.top/blog/934e09a6b96e2094.png"
},
{
"old": "https://s2.loli.net/2023/03/12/zPutIGJU4oLy7RS.png",
"new": "https://img.sehnsucht.top/blog/0b00be312795821b.png"
},
{
"old": "https://s2.loli.net/2023/03/12/Bx6Lb92peIHa1sD.png",
"new": "https://img.sehnsucht.top/blog/f42ffc3e9ff6cb79.png"
},
{
"old": "https://s2.loli.net/2025/03/04/X7Y2aOnMAU6SxvH.jpg",
"new": "https://img.sehnsucht.top/blog/4dcfa12232915571.png"
},
{
"old": "https://s2.loli.net/2025/03/04/13joFn5lMpvgNHI.jpg",
"new": "https://img.sehnsucht.top/blog/2a18d1fc7b33c091.png"
},
{
"old": "https://s2.loli.net/2023/04/02/DZoCbPY8G1iHBpU.jpg",
"new": "https://img.sehnsucht.top/blog/72b03c2c9960b4e8.png"
},
{
"old": "https://s2.loli.net/2023/04/02/iKDd71qgeI3BY2b.jpg",
"new": "https://img.sehnsucht.top/blog/8f6a1e465d1dcc95.png"
},
{
"old": "https://s2.loli.net/2023/04/02/rK1DnJiwHL2XOCd.jpg",
"new": "https://img.sehnsucht.top/blog/257fae2eb9e70ce3.png"
},
{
"old": "https://s2.loli.net/2023/04/02/lPD5J18i2fvUVZg.jpg",
"new": "https://img.sehnsucht.top/blog/ec6863404d91e025.png"
},
{
"old": "https://s2.loli.net/2023/04/02/nwSCvmsybrHFioj.jpg",
"new": "https://img.sehnsucht.top/blog/abb9e1cf772003dc.png"
},
{
"old": "https://s2.loli.net/2023/04/02/IbgMXYcKeVw3jzO.jpg",
"new": "https://img.sehnsucht.top/blog/a53873609f42bd6f.png"
},
{
"old": "https://s2.loli.net/2024/08/03/XjdYiCOP4nIa9Ay.jpg",
"new": "https://img.sehnsucht.top/blog/6d6fb1c31cccc219.png"
},
{
"old": "https://s2.loli.net/2024/08/03/zOHR9lG3PseQoTr.jpg",
"new": "https://img.sehnsucht.top/blog/9a8ca7f349916f67.png"
},
{
"old": "https://s2.loli.net/2024/08/03/bAB8wM9NfTPzaRJ.jpg",
"new": "https://img.sehnsucht.top/blog/3a35a70fbdfeb068.png"
}
] 





















