一、本篇前置衔接
第十九篇我们完成了全系列终局复盘,整理了故障排查SOP与企业级落地铁律。常规单资源锁、热点分片锁、隔离锁全部讲透,但真实复杂业务永远不是单一资源:下单要扣库存、扣优惠券、扣积分、冻结余额,多资源并行争抢、跨服务嵌套加锁。多锁叠加必死锁、加锁无序必翻车。第十九篇,专门深挖Redisson联锁底层原理、交叉死锁成因、多级资源统一排序,彻底根治复杂业务下最难排查、最容易线上卡死的连环死锁,补齐中大型复杂业务架构短板。
二、业务真实痛点:单锁永远没事,多锁必炸
简单单一资源业务,比如单纯扣库存、单纯改状态,普通可重入锁完全够用。一旦业务链路变复杂,同时操作库存、优惠券、钱包、积分,不同服务加锁顺序不一致:订单服务先锁库存、再锁优惠券;营销服务先锁优惠券、再锁库存。流量一高,双向互相等待、互相持有对方需要的锁,形成闭环等待。监控无报错、代码无异常、服务不宕机,就是接口永久卡死,线程缓慢堆积,这种隐性死锁排查难度极高,普通日志完全看不出问题。
三、两类 线上高频联锁灾难,绝大多数团队持续踩坑
第一类:业务代码随意加锁,无统一排序规则。开发人员各自编码、各自加锁,没有全局资源编码规范,谁先写谁先锁。低并发互相不触发,生产高峰随机触发闭环死锁,复现概率极低、测试环境 永远测不出来,只能线上被动救火。
第二类:联锁加锁成功、部分锁失败,资源残留卡死。一次性申请多把锁,前两把加锁成功,最后一把争抢失败。未做原子回滚机制,成功的锁不会自动释放,残留锁长期占用资源,后续请求持续排队阻塞,越积越多形成连片卡顿。
第三类:联锁嵌套事务,时序错乱数据脏写。多锁场景下错误把锁写在事务内部,多把锁持有期间事务未提交,其他节点读取旧数据,联锁失去全局一致性,出现扣款成功、库存未扣、优惠券重复核销等诡异数据偏差。
四、Redisson联锁底层原理,一次性讲透
联锁(MultiLock)并非神奇算法 ,底层是批量串行加锁、原子性统一管控。原理分为三步:第一,将所有锁key集合按照固定顺序排序;第二,循环依次执行lua加锁,全部加锁成功才算持有联锁;第三,任意一把锁加锁失败,自动反向依次释放所有已成功锁,保证无残留、无单边占用。原生解决人工手写多锁无序、残留、死锁三大痛点,这也是大厂复杂业务强制禁用手写多锁、必须原生联锁的根本原因。
五、根治死锁核心:全局资源字典序强制排序规范
无论多少资源、多少服务、多少链路,所有业务锁必须遵守统一资源编码排序。官方硬性落地顺序:资金类锁 > 用户资产锁 > 商品库存锁 > 营销优惠券锁 > 活动配置锁。任何服务、任何开发、任何链路,必须严格自上而下顺序加锁,禁止反向、禁止跳跃、禁止随意顺序。从架构层面抹除循环等待条件,永久性杜绝交叉死锁。
六、联锁生产级标准使用流程(直接复制投产)
第一步:提前定义本次业务所有需要争抢的锁key,不可动态新增锁;第二步:按照全局字典序强制重排锁顺序,不允许乱序;第三步:一次性注入Redisson MultiLock,批量原子加锁;第四步:外层加锁、内层开启事务,执行业务扣减、核销、冻结逻辑;第五步:事务提交完毕,finally统一批量释放联锁;第六步:日志埋点记录每一把锁争抢耗时、持有时长,方便异常溯源。
七、联锁高危禁忌,代码评审一票否决
禁止人工手写多把锁代替原生联锁,极易残留死锁;禁止加锁顺序不统一,跨服务反向争抢;禁止联锁嵌套异步线程,子线程持锁主线程判定释放;禁止联锁加锁失败不回滚、不清理;禁止超大批量联锁,一次加锁超过5把必须拆分业务链路,避免加锁耗时过长、持锁时间不可控。
八、联锁与普通锁选型对照表
单一资源改动:基础可重入锁,轻量高效;读写分离查询:读写锁,提高并发吞吐;简单定时任务 :公平锁,保证排队有序;2~5个资源联动改动:标准联锁,保证原子互斥;超过5个资源复杂链路:业务拆分+分
https://ds.163.com/article/6a1b45bdf96bf2214810cdec/
https://ds.163.com/article/6a1b45bb30d18731c0154b9f/
https://ds.163.com/article/6a1b45bbc173ac5107f6eec5/
https://ds.163.com/article/6a1b45b98df2cd29a4876e48/
https://ds.163.com/article/6a1b45b97464852b984e4fac/
https://ds.163.com/article/6a1b45b7e80aee323be43079/
https://ds.163.com/article/6a1b45b41a00f0266b60a22e/
https://ds.163.com/article/6a1b45b36f5c5a13a735ae17/
https://ds.163.com/article/6a1b45b1b0682831264764f3/
https://ds.163.com/article/6a1b45adcb6b692c89c52089/
https://ds.163.com/article/6a1b45adf96bf2214810cde3/
https://ds.163.com/article/6a1b45ac9c1fb63249dd6fd1/
https://ds.163.com/article/6a1b45aa30d18731c0154b91/
https://ds.163.com/article/6a1b45a81a00f0266b60a228/
https://ds.163.com/article/6a1b45a67464852b984e4fa1/
https://ds.163.com/article/6a1b45a09dc5b7025aa25b04/
https://ds.163.com/article/6a1b45a413dba0343653ca1d/
https://ds.163.com/article/6a1b45a130d18731c0154b8a/
https://ds.163.com/article/6a1b45a07464852b984e4f9e/
https://ds.163.com/article/6a1b459f7464852b984e4f9a/
https://ds.163.com/article/6a1b459ee80aee323be43063/
https://ds.163.com/article/6a1b459ab0682831264764eb/
https://ds.163.com/article/6a1b4599ef7da136b78ec365/
https://ds.163.com/article/6a1b45999c1fb63249dd6fc3/
https://ds.163.com/article/6a1b45978df2cd29a4876e3b/
https://ds.163.com/article/6a1b45938df2cd29a4876e34/
https://ds.163.com/article/6a1b4592ad2cce56869b7198/
https://ds.163.com/article/6a1b4592b0682831264764e4/
https://ds.163.com/article/6a1b4590e80aee323be43058/
https://ds.163.com/article/6a1b458bad2cce56869b7193/
https://ds.163.com/article/6a1b458cc173ac5107f6eead/
https://ds.163.com/article/6a1b458b30d18731c0154b76/
https://ds.163.com/article/6a1b45856f5c5a13a735ae03/
https://ds.163.com/article/6a1b45846f5c5a13a735ae00/
https://ds.163.com/article/6a1b457fb0682831264764d2/
https://ds.163.com/article/6a1b457c7464852b984e4f89/
https://ds.163.com/article/6a1b4574bb57d43508f323f6/
https://ds.163.com/article/6a1b457930d18731c0154b69/
https://ds.163.com/article/6a1b4576e89a7e2331d6f45d/
https://ds.163.com/article/6a1b457413dba0343653c9f8/
https://ds.163.com/article/6a1b4570ad2cce56869b717e/
https://ds.163.com/article/6a1b456dcb6b692c89c5204c/
https://ds.163.com/article/6a1b456b30d18731c0154b64/
https://ds.163.com/article/6a1b4565b0682831264764bd/
https://ds.163.com/article/6a1b4567f96bf2214810cdb9/
https://ds.163.com/article/6a1b45646f5c5a13a735adee/
https://ds.163.com/article/6a1b45621a00f0266b60a1f3/
https://ds.163.com/article/6a1b4561b0682831264764b8/
https://ds.163.com/article/6a1b455f1a00f0266b60a1f0/
https://ds.163.com/article/6a1b455c9c1fb63249dd6f9d/
https://ds.163.com/article/6a1b45552166d71c3c60af97/
https://ds.163.com/article/6a1b45546f5c5a13a735addd/
https://ds.163.com/article/6a1b4550c173ac5107f6ee92/
https://ds.163.com/article/6a1b455130d18731c0154b55/
https://ds.163.com/article/6a1b45519c1fb63249dd6f94/
https://ds.163.com/article/6a1b454d40a62642363d7c76/
https://ds.163.com/article/6a1b45437464852b984e4f62/
https://ds.163.com/article/6a1b454413dba0343653c9dc/
https://ds.163.com/article/6a1b4541e89a7e2331d6f438/
https://ds.163.com/article/6a1b45429dc5b7025aa25ad9/
https://ds.163.com/article/6a1b453fb06828312647649c/
https://ds.163.com/article/6a1b453f9dc5b7025aa25ad5/
https://ds.163.com/article/6a1b453cf96bf2214810cda4/
https://ds.163.com/article/6a1b45387464852b984e4f5a/
https://ds.163.com/article/6a1b45341a00f0266b60a1d3/
https://ds.163.com/article/6a1b45348df2cd29a4876df3/
https://ds.163.com/article/6a1b452f9c1fb63249dd6f68/
https://ds.163.com/article/6a1b452e13dba0343653c9cd/
https://ds.163.com/article/6a1b452b9c1fb63249dd6f64/
https://ds.163.com/article/6a1b45279c1fb63249dd6f59/
https://ds.163.com/article/6a1b45269dc5b7025aa25ab8/
https://ds.163.com/article/6a1b4526bb57d43508f323b1/
https://ds.163.com/article/6a1b4523ef7da136b78ec325/
https://ds.163.com/article/6a1b45187464852b984e4f48/
https://ds.163.com/article/6a1b4520cb6b692c89c5201d/
https://ds.163.com/article/6a1b451c8df2cd29a4876de3/
https://ds.163.com/article/6a1b451a5b017e79285a4d28/
https://ds.163.com/article/6a1b451930d18731c0154b39/
https://ds.163.com/article/6a1b451813dba0343653c9c1/
https://ds.163.com/article/6a1b4516cb6b692c89c52017/
https://ds.163.com/article/6a1b450d9dc5b7025aa25aad/
https://ds.163.com/article/6a1b44f69dc5b7025aa25a98/
https://ds.163.com/article/6a1b450c6f5c5a13a735adaa/
https://ds.163.com/article/6a1b450c30d18731c0154b2f/
https://ds.163.com/article/6a1b450c8df2cd29a4876dde/
https://ds.163.com/article/6a1b450b6f5c5a13a735ada3/
https://ds.163.com/article/6a1b44ff5b017e79285a4d10/
https://ds.163.com/article/6a1b44fec173ac5107f6ee61/
https://ds.163.com/article/6a1b44ffef7da136b78ec315/
https://ds.163.com/article/6a1b44fe634aee530f565026/
https://ds.163.com/article/6a1b44fe7464852b984e4f3d/
https://ds.163.com/article/6a1b44fd1a00f0266b60a1b2/
https://ds.163.com/article/6a1b44fb5b017e79285a4d0c/
https://ds.163.com/article/6a1b44f2ef7da136b78ec30c/
https://ds.163.com/article/6a1b44ee40a62642363d7c3e/
https://ds.163.com/article/6a1b44efe89a7e2331d6f40c/
https://ds.163.com/article/6a1b44eec173ac5107f6ee5a/
https://ds.163.com/article/6a1b44e4f96bf2214810cd66/
https://ds.163.com/article/6a1b44e1634aee530f56500d/
https://ds.163.com/article/6a1b44e09dc5b7025aa25a8d/
https://ds.163.com/article/6a1b44e0e89a7e2331d6f400/
https://ds.163.com/article/6a1b44de2166d71c3c60af56/
https://ds.163.com/article/6a1b44dbad2cce56869b712e/
https://ds.163.com/article/6a1b44dbe80aee323be42fe0/
https://ds.163.com/article/6a1b44d7a7b5660ce71ab742/
https://ds.163.com/article/6a1b44d413dba0343653c995/
https://ds.163.com/article/6a1b44d0a7b5660ce71ab73b/
https://ds.163.com/article/6a1b44ccc173ac5107f6ee3e/
https://ds.163.com/article/6a1b44cdf96bf2214810cd5e/
https://ds.163.com/article/6a1b44c830d18731c0154b00/
https://ds.163.com/article/6a1b44c62166d71c3c60af45/
https://ds.163.com/article/6a1b44c69c1fb63249dd6f2e/
https://ds.163.com/article/6a1b44c2b068283126476455/
https://ds.163.com/article/6a1b44c15b017e79285a4cea/
https://ds.163.com/article/6a1b44c040a62642363d7c2f/
https://ds.163.com/article/6a1b44bb13dba0343653c98e/
https://ds.163.com/article/6a1b44b9e80aee323be42fd4/
https://ds.163.com/article/6a1b44b8e89a7e2331d6f3ef/
https://ds.163.com/article/6a1b44b51a00f0266b60a186/
https://ds.163.com/article/6a1b44b130d18731c0154af1/
https://ds.163.com/article/6a1b44b38df2cd29a4876dae/
https://ds.163.com/article/6a1b44b3e89a7e2331d6f3ec/
https://ds.163.com/article/6a1b44af2166d71c3c60af31/
https://ds.163.com/article/6a1b44acc173ac5107f6ee2a/
https://ds.163.com/article/6a1b44aaaa480c20d0016fe5/
https://ds.163.com/article/6a1b44ab30d18731c0154aea/
https://ds.163.com/article/6a1b44a7e89a7e2331d6f3e9/
https://ds.163.com/article/6a1b44a6b06828312647643b/
https://ds.163.com/article/6a1b44a1aa480c20d0016fda/
https://ds.163.com/article/6a1b44a230d18731c0154ae4/
https://ds.163.com/article/6a1b449e5b017e79285a4cda/
https://ds.163.com/article/6a1b4495c173ac5107f6ee18/
https://ds.163.com/article/6a1b4497cb6b692c89c51fd2/
https://ds.163.com/article/6a1b4496bb57d43508f32365/
https://ds.163.com/article/6a1b4493479647359a5ac231/
https://ds.163.com/article/6a1b4494479647359a5ac234/
https://ds.163.com/article/6a1b4492cb6b692c89c51fcd/
https://ds.163.com/article/6a1b44912166d71c3c60af1d/
https://ds.163.com/article/6a1b448a30d18731c0154ad3/
https://ds.163.com/article/6a1b44882166d71c3c60af16/
https://ds.163.com/article/6a1b4486c173ac5107f6ee0e/
https://ds.163.com/article/6a1b44859dc5b7025aa25a5f/
https://ds.163.com/article/6a1b44835b017e79285a4cc9/
https://ds.163.com/article/6a1b4482ef7da136b78ec2ce/
https://ds.163.com/article/6a1b447dcb6b692c89c51fc8/
https://ds.163.com/article/6a1b447bb068283126476429/
https://ds.163.com/article/6a1b4477b068283126476426/
https://ds.163.com/article/6a1b4476ad2cce56869b7103/
https://ds.163.com/article/6a1b4475a7b5660ce71ab70d/
https://ds.163.com/article/6a1b447430d18731c0154ac7/
https://ds.163.com/article/6a1b4470ad2cce56869b7100/
https://ds.163.com/article/6a1b446ff96bf2214810cd27/
https://ds.163.com/article/6a1b446d2166d71c3c60af07/
https://ds.163.com/article/6a1b44697464852b984e4ed8/
https://ds.163.com/article/6a1b446840a62642363d7bf6/
https://ds.163.com/article/6a1b44671a00f0266b60a154/
https://ds.163.com/article/6a1b446540a62642363d7bef/
https://ds.163.com/article/6a1b4463634aee530f564fcd/
https://ds.163.com/article/6a1b4462bb57d43508f32345/
https://ds.163.com/article/6a1b4461b06828312647641a/
https://ds.163.com/article/6a1b445f9c1fb63249dd6eea/
https://ds.163.com/article/6a1b445bad2cce56869b70ec/
https://ds.163.com/article/6a1b445aef7da136b78ec2bd/
https://ds.163.com/article/6a1b4459bb57d43508f32341/
https://ds.163.com/article/6a1b445640a62642363d7be5/
https://ds.163.com/article/6a1b4453ad2cce56869b70e6/
https://ds.163.com/article/6a1b44522166d71c3c60aef7/
https://ds.163.com/article/6a1b4452b06828312647640d/
https://ds.163.com/article/6a1b444c6f5c5a13a735ad4c/
https://ds.163.com/article/6a1b444c8df2cd29a4876d79/
https://ds.163.com/article/6a1b444b634aee530f564fc4/
https://ds.163.com/article/6a1b4449aa480c20d0016fb6/
https://ds.163.com/article/6a1b44469c1fb63249dd6ed9/
https://ds.163.com/article/6a1b4440ad2cce56869b70d7/
https://ds.163.com/article/6a1b443f13dba0343653c94f/
https://ds.163.com/article/6a1b44412166d71c3c60aee3/
https://ds.163.com/article/6a1b443f8df2cd29a4876d6d/
https://ds.163.com/article/6a1b443e9c1fb63249dd6ed4/
https://ds.163.com/article/6a1b443840a62642363d7bd6/
https://ds.163.com/article/6a1b4432c173ac5107f6edde/
https://ds.163.com/article/6a1b4432479647359a5ac1fe/
https://ds.163.com/article/6a1b44325b017e79285a4c8c/
https://ds.163.com/article/6a1b442ee89a7e2331d6f39b/
https://ds.163.com/article/6a1b442e1a00f0266b60a135/
https://ds.163.com/article/6a1b442a2166d71c3c60aed1/
https://ds.163.com/article/6a1b442aad2cce56869b70c0/
https://ds.163.com/article/6a1b4427e89a7e2331d6f392/
https://ds.163.com/article/6a1b4425ad2cce56869b70b7/
https://ds.163.com/article/6a1b4424aa480c20d0016fa2/
https://ds.163.com/article/6a1b44249c1fb63249dd6ebc/
https://ds.163.com/article/6a1b4422aa480c20d0016f9e/
https://ds.163.com/article/6a1b441cbb57d43508f32320/
https://ds.163.com/article/6a1b441ccb6b692c89c51f8a/
https://ds.163.com/article/6a1b441b7464852b984e4e9d/
https://ds.163.com/article/6a1b441813dba0343653c940/
https://ds.163.com/article/6a1b441aaa480c20d0016f96/
https://ds.163.com/article/6a1b4419cb6b692c89c51f84/
https://ds.163.com/article/6a1b44178df2cd29a4876d4a/
https://ds.163.com/article/6a1b4417f96bf2214810ccec/
https://ds.163.com/article/6a1b441540a62642363d7bb1/
https://ds.163.com/article/6a1b4413ad2cce56869b7099/
https://ds.163.com/article/6a1b440cb0682831264763dd/
https://ds.163.com/article/6a1b440dc173ac5107f6edc4/
https://ds.163.com/article/6a1b440bf96bf2214810ccd7/
https://ds.163.com/article/6a1b4409e80aee323be42f77/
https://ds.163.com/article/6a1b44095b017e79285a4c60/
https://ds.163.com/article/6a1b440830d18731c0154a69/
https://ds.163.com/article/6a1b4408ad2cce56869b7088/
https://ds.163.com/article/6a1b4408f96bf2214810ccd0/
https://ds.163.com/article/6a1b44051a00f0266b60a0fd/
https://ds.163.com/article/6a1b4402e80aee323be42f66/
https://ds.163.com/article/6a1b43ff479647359a5ac1d7/
https://ds.163.com/article/6a1b43fa634aee530f564f62/
https://ds.163.com/article/6a1b43fb634aee530f564f67/
https://ds.163.com/article/6a1b43fa8df2cd29a4876d1e/
https://ds.163.com/article/6a1b43f95b017e79285a4c53/
https://ds.163.com/article/6a1b43f7f96bf2214810ccb1/
https://ds.163.com/article/6a1b43f7b0682831264763cc/
https://ds.163.com/article/6a1b43f6ef7da136b78ec272/
https://ds.163.com/article/6a1b43f6b0682831264763c8/
https://ds.163.com/article/6a1b43f4ad2cce56869b7066/
https://ds.163.com/article/6a1b43f0e89a7e2331d6f350/
https://ds.163.com/article/6a1b43ec634aee530f564f54/
https://ds.163.com/article/6a1b43edcb6b692c89c51f43/
https://ds.163.com/article/6a1b43ece89a7e2331d6f346/
https://ds.163.com/article/6a1b43ec7464852b984e4e79/
https://ds.163.com/article/6a1b43e95b017e79285a4c3f/
https://ds.163.com/article/6a1b43e95b017e79285a4c3c/
https://ds.163.com/article/6a1b43e6e89a7e2331d6f336/
https://ds.163.com/article/6a1b43e2cb6b692c89c51f2e/
https://ds.163.com/article/6a1b43dfcb6b692c89c51f20/
https://ds.163.com/article/6a1b43de6f5c5a13a735acf0/
https://ds.163.com/article/6a1b43deaa480c20d0016f2f/
https://ds.163.com/article/6a1b43de634aee530f564f3f/
https://ds.163.com/article/6a1b43dccb6b692c89c51f16/
https://ds.163.com/article/6a1b43dbaa480c20d0016f28/
https://ds.163.com/article/6a1b43dba7b5660ce71ab67f/
https://ds.163.com/article/6a1b43d9cb6b692c89c51f10/
https://ds.163.com/article/6a1b43d4b0682831264763ac/
https://ds.163.com/article/6a1b43d35b017e79285a4c19/
https://ds.163.com/article/6a1b43d15b017e79285a4c13/
https://ds.163.com/article/6a1b43d0aa480c20d0016f14/
https://ds.163.com/article/6a1b43cfef7da136b78ec236/
https://ds.163.com/article/6a1b43cc1a00f0266b60a0af/
https://ds.163.com/article/6a1b43cd8df2cd29a4876cdf/
https://ds.163.com/article/6a1b43cc9c1fb63249dd6e3a/
https://ds.163.com/article/6a1b43ccf96bf2214810cc77/
https://ds.163.com/article/6a1b43c7bb57d43508f322c2/
https://ds.163.com/article/6a1b43c640a62642363d7b3f/
https://ds.163.com/article/6a1b43c59c1fb63249dd6e35/
https://ds.163.com/article/6a1b43c2a7b5660ce71ab655/
https://ds.163.com/article/6a1b43c12166d71c3c60ae40/
https://ds.163.com/article/6a1b43c0e80aee323be42ef3/
https://ds.163.com/article/6a1b43bfb068283126476394/
https://ds.163.com/article/6a1b43bd30d18731c0154a0f/
https://ds.163.com/article/6a1b43b840a62642363d7b2e/
https://ds.163.com/article/6a1b43b85b017e79285a4bf3/
https://ds.163.com/article/6a1b43b8634aee530f564ef1/
https://ds.163.com/article/6a1b43b3c173ac5107f6ed4d/
https://ds.163.com/article/6a1b43b340a62642363d7b24/
https://ds.163.com/article/6a1b43b15b017e79285a4be7/
https://ds.163.com/article/6a1b43b19c1fb63249dd6e0f/
https://ds.163.com/article/6a1b43b0bb57d43508f32295/
https://ds.163.com/article/6a1b43afc173ac5107f6ed43/
https://ds.163.com/article/6a1b43ab7464852b984e4e20/
https://ds.163.com/article/6a1b43ab2166d71c3c60ae1e/
https://ds.163.com/article/6a1b43a59c1fb63249dd6df9/
https://ds.163.com/article/6a1b43a4f96bf2214810cc48/
https://ds.163.com/article/6a1b43a2aa480c20d0016ece/
https://ds.163.com/article/6a1b43a1a7b5660ce71ab623/
https://ds.163.com/article/6a1b43a17464852b984e4e14/
https://ds.163.com/article/6a1b43a0479647359a5ac14f/
https://ds.163.com/article/6a1b439b30d18731c01549e6/
https://ds.163.com/article/6a1b439bc173ac5107f6ed1b/
https://ds.163.com/article/6a1b43942166d71c3c60adf8/
https://ds.163.com/article/6a1b4394bb57d43508f32270/
https://ds.163.com/article/6a1b439440a62642363d7b01/
https://ds.163.com/article/6a1b43935b017e79285a4bbd/
https://ds.163.com/article/6a1b43935b017e79285a4bc0/
https://ds.163.com/article/6a1b439240a62642363d7af9/
https://ds.163.com/article/6a1b438fa7b5660ce71ab601/
https://ds.163.com/article/6a1b438a479647359a5ac11f/
https://ds.163.com/article/6a1b4388e89a7e2331d6f2ac/
https://ds.163.com/article/6a1b4386aa480c20d0016e97/
https://ds.163.com/article/6a1b438640a62642363d7add/
https://ds.163.com/article/6a1b4386c173ac5107f6eced/
https://ds.163.com/article/6a1b43839c1fb63249dd6dc4/
https://ds.163.com/article/6a1b4382a7b5660ce71ab5ec/
https://ds.163.com/article/6a1b4381ad2cce56869b6fc2/
https://ds.163.com/article/6a1b437ebb57d43508f3225b/
https://ds.163.com/article/6a1b437813dba0343653c875/
https://ds.163.com/article/6a1b43789dc5b7025aa2595d/
https://ds.163.com/article/6a1b43782166d71c3c60adcb/
https://ds.163.com/article/6a1b4374e80aee323be42e82/
https://ds.163.com/article/6a1b4374c173ac5107f6ecca/
https://ds.163.com/article/6a1b4374634aee530f564e9e/
https://ds.163.com/article/6a1b4371ad2cce56869b6fb1/
https://ds.163.com/article/6a1b43702166d71c3c60adbc/
https://ds.163.com/article/6a1b436abb57d43508f3224c/
https://ds.163.com/article/6a1b4367aa480c20d0016e61/
https://ds.163.com/article/6a1b436713dba0343653c85e/
https://ds.163.com/article/6a1b4367c173ac5107f6ecb4/
https://ds.163.com/article/6a1b43669c1fb63249dd6d7f/
https://ds.163.com/article/6a1b43669c1fb63249dd6d7e/
https://ds.163.com/article/6a1b4363e80aee323be42e69/
https://ds.163.com/article/6a1b4363479647359a5ac0de/
https://ds.163.com/article/6a1b43622166d71c3c60ada0/
https://ds.163.com/article/6a1b435be89a7e2331d6f25e/
https://ds.163.com/article/6a1b43592166d71c3c60ad80/
https://ds.163.com/article/6a1b435830d18731c0154978/
https://ds.163.com/article/6a1b43587464852b984e4dbd/
https://ds.163.com/article/6a1b43579dc5b7025aa25929/
https://ds.163.com/article/6a1b4355aa480c20d0016e3f/
https://ds.163.com/article/6a1b43552166d71c3c60ad77/
https://ds.163.com/article/6a1b4354e80aee323be42e5b/
https://ds.163.com/article/6a1b434e9c1fb63249dd6d54/
https://ds.163.com/article/6a1b434c6f5c5a13a735ac20/
https://ds.163.com/article/6a1b434a6f5c5a13a735ac1c/
https://ds.163.com/article/6a1b434bad2cce56869b6f89/
https://ds.163.com/article/6a1b43485b017e79285a4b67/
https://ds.163.com/article/6a1b43469dc5b7025aa25911/
https://ds.163.com/article/6a1b4347a7b5660ce71ab59d/
https://ds.163.com/article/6a1b4344aa480c20d0016e22/
https://ds.163.com/article/6a1b4344cb6b692c89c51e69/
https://ds.163.com/article/6a1b433fe89a7e2331d6f236/
https://ds.163.com/article/6a1b433ea7b5660ce71ab594/
https://ds.163.com/article/6a1b433ca7b5660ce71ab591/
https://ds.163.com/article/6a1b433c479647359a5ac0b4/
https://ds.163.com/article/6a1b433c13dba0343653c834/
https://ds.163.com/article/6a1b433a6f5c5a13a735ac0c/
https://ds.163.com/article/6a1b43355b017e79285a4b56/
https://ds.163.com/article/6a1b432f13dba0343653c82c/
https://ds.163.com/article/6a1b43312166d71c3c60ad42/
https://ds.163.com/article/6a1b432e6f5c5a13a735abfb/
https://ds.163.com/article/6a1b432e40a62642363d7a4d/
https://ds.163.com/article/6a1b432fef7da136b78ec16e/
https://ds.163.com/article/6a1b432ebb57d43508f32201/
https://ds.163.com/article/6a1b432ce89a7e2331d6f214/
https://ds.163.com/article/6a1b4327a7b5660ce71ab553/
https://ds.163.com/article/6a1b4324cb6b692c89c51e2a/
https://ds.163.com/article/6a1b43219c1fb63249dd6d11/
https://ds.163.com/article/6a1b4321f96bf2214810cbb8/
https://ds.163.com/article/6a1b4320f96bf2214810cbb4/
https://ds.163.com/article/6a1b4320bb57d43508f321f0/
https://ds.163.com/article/6a1b431ebb57d43508f321ea/
https://ds.163.com/article/6a1b431e479647359a5ac08f/




