├── 知乎_值乎.xlsx
├── word_yun
├── simsun.ttf
└── word_yun.py
├── block_game
├── block.png
├── image
│ ├── ball.png
│ ├── block.png
│ ├── borad.png
│ ├── broad.png
│ ├── background.png
│ └── img_1
│ │ ├── ball.png
│ │ ├── borad.png
│ │ └── paddle.png
├── levels.js
├── utils.js
├── block.js
├── ball.js
├── paddle.js
├── index.html
├── game.js
├── main.js
└── index_big.html
├── btba_movie_spider
├── README.md
├── btba_spider.py
└── movie_list.md
├── picture_to_str
├── ascii_dora.png
└── ascii.py
├── year_change.py
├── if_leap_year.py
├── README.md
├── 数据库操作.py
├── chat_myself
├── main_only.py
└── corpus_data.py
└── base64_number.py
/知乎_值乎.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/知乎_值乎.xlsx
--------------------------------------------------------------------------------
/word_yun/simsun.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/word_yun/simsun.ttf
--------------------------------------------------------------------------------
/block_game/block.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/block.png
--------------------------------------------------------------------------------
/block_game/image/ball.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/ball.png
--------------------------------------------------------------------------------
/block_game/image/block.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/block.png
--------------------------------------------------------------------------------
/block_game/image/borad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/borad.png
--------------------------------------------------------------------------------
/block_game/image/broad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/broad.png
--------------------------------------------------------------------------------
/btba_movie_spider/README.md:
--------------------------------------------------------------------------------
1 | 爬取电影网站所有电影, Torrent
2 |
3 | 你可以利用里面的函数,将所有数据存入数据库
4 |
5 | http://www.btba.com.cn
6 |
--------------------------------------------------------------------------------
/picture_to_str/ascii_dora.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/picture_to_str/ascii_dora.png
--------------------------------------------------------------------------------
/block_game/image/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/background.png
--------------------------------------------------------------------------------
/block_game/image/img_1/ball.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/img_1/ball.png
--------------------------------------------------------------------------------
/block_game/image/img_1/borad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/img_1/borad.png
--------------------------------------------------------------------------------
/block_game/image/img_1/paddle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xiaobing88/little_python/HEAD/block_game/image/img_1/paddle.png
--------------------------------------------------------------------------------
/year_change.py:
--------------------------------------------------------------------------------
1 | #!usr/bin/env python
2 | #encoding:utf-8
3 | def year_change(a):
4 | if a>1912:
5 | b = a-1912+1
6 | print "中华民国%d年"%b
7 | else:
8 | print "你的year不符合要求"
9 | return ''
10 | year = input("year is:")
11 | print year_change(year)
12 |
--------------------------------------------------------------------------------
/if_leap_year.py:
--------------------------------------------------------------------------------
1 | #!usr/bin/env python
2 | #encoding:utf-8
3 | year = input("year is:")
4 | n = year%100
5 | if n!=0:
6 | if (year%4)==0:
7 | print "此年为闰年"
8 | else:
9 | print "此年为平年"
10 | if n==0:
11 | if (year%400)==0:
12 | print "此年为闰年"
13 | else:
14 | print "此年为平年"
15 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 我的平时python小程序
2 |
3 | ## block_game
4 | ```bash
5 | 关于JavaScript的一个打砖块小游戏
6 | ```
7 |
8 | ## btba_movie_spider
9 | ```bash
10 | 关于电影网站的磁力链接爬虫
11 | ```
12 |
13 | ## chat_myself
14 | ```bash
15 | 便于理解的问答检索过程
16 | ```
17 |
18 | ## picture_to_str
19 | ```bash
20 | 图片转为命令行下的字符
21 | ```
22 |
23 | ## word_yun
24 | ```bash
25 | 文本分析,转为词云
26 | ```
--------------------------------------------------------------------------------
/block_game/levels.js:
--------------------------------------------------------------------------------
1 | var levels = [
2 | [
3 | [0, 0,],
4 | ],
5 | [
6 | [50, 0,],
7 | [100, 100,],
8 | ],
9 | [
10 | [50, 30,],
11 | [100, 100,,2,],
12 | [200, 100,2,],
13 | ],
14 | [
15 | [50, 30,],
16 | [100, 100,,2,],
17 | [200, 100,2,],
18 | [300, 100,3,],
19 | ],
20 | [
21 | [50, 30,],
22 | [100, 100,,2,],
23 | [200, 100,2,],
24 | [300, 100,3,],
25 | [350, 130,3,],
26 | ],
27 | ]
28 |
--------------------------------------------------------------------------------
/word_yun/word_yun.py:
--------------------------------------------------------------------------------
1 | import matplotlib.pyplot as plt
2 | from wordcloud import WordCloud
3 | import jieba
4 | text_from_file_with_apath = open('adsl.txt').read()
5 | wordlist_after_jieba = jieba.cut(text_from_file_with_apath, cut_all = True)
6 | wl_space_split = " ".join(wordlist_after_jieba)
7 | my_wordcloud = WordCloud(font_path=r'./simsun.ttf').generate(wl_space_split)
8 | plt.imshow(my_wordcloud)
9 | plt.axis("off")
10 | plt.show()
11 |
--------------------------------------------------------------------------------
/数据库操作.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | # -*- coding: UTF-8 -*-
3 | '''Risk2S'''
4 | #引用 模块包
5 | import MySQLdb
6 |
7 | db = MySQLdb.connect("localhost","root","root","test")
8 | # 使用cursor()方法获取操作游标
9 | cursor = db.cursor()
10 |
11 | sql = """SHOW DATABASES;"""
12 |
13 | try:
14 | # 使用execute方法执行SQL语句
15 | cursor.execute(sql)
16 | db.commit()
17 | results = cursor.fetchall()
18 | print results
19 | except:
20 | db.rollback()
21 |
22 | # 关闭数据库连接
23 | db.close()
24 |
--------------------------------------------------------------------------------
/block_game/utils.js:
--------------------------------------------------------------------------------
1 | // console.log为系统自带
2 | // var log = console.log.bind(console)
3 | // log 自定义函数
4 | var e = sel => document.querySelector(sel)
5 | var log = console.log.bind(console)
6 | // var log = function(s){
7 | // e('#id-text-log').value += '\n' + s
8 | // }
9 | var imagefrompath =function(path){
10 | var img = new Image()
11 | img.src = path
12 | // log(img)
13 | return img
14 | }
15 |
16 |
17 | var rectIntersetcts = function(a,b){
18 | var o = a
19 | if (b.y > o.y && b.y < o.y + o.image.height){
20 | if (b.x > o.x && b.x < o.x + o.image.width){
21 | log('碰撞')
22 | return true
23 | }
24 | }
25 | return false
26 | }
--------------------------------------------------------------------------------
/block_game/block.js:
--------------------------------------------------------------------------------
1 | var Block = function(game, position){
2 | // positon 格式: [0, 0]
3 | var p = position
4 | // var image =imagefrompath('./image/block.png')
5 | var img = game.imagefromname('block')
6 | var o = {
7 | x: p[0],
8 | y: p[1],
9 | // w: 50,
10 | // h: 20,
11 | alive: true,
12 | lifes: p[2] || 1
13 | // wid: 40,
14 | // hei: 40,
15 | }
16 | o.image = img.image
17 | o.w = img.w
18 | o.h = img.h
19 | o.kill = function(){
20 | o.lifes--
21 | if (o.lifes < 1){
22 | o.alive = false
23 | }
24 | }
25 | o.collide = function(b){
26 | return o.alive &&(rectIntersetcts(o,b) || rectIntersetcts(b,o))
27 | }
28 | return o
29 | }
--------------------------------------------------------------------------------
/block_game/ball.js:
--------------------------------------------------------------------------------
1 | var Ball = function(game){
2 | var o = game.imagefromname('ball')
3 | o.x = 170
4 | o.y = 230
5 | o.speedX = 5
6 | o.speedY = 5
7 | o.fired = false
8 | // var o = {
9 | // image: image,
10 | // x: 180,
11 | // y: 190,
12 | // wid: 40,
13 | // hei: 40,
14 | // speedX: 5,
15 | // speedY: 5,
16 | // fired: false,
17 | // }
18 | o.fire = function(){
19 | o.fired = true
20 | }
21 | o.move = function(){
22 | if (o.fired){
23 | // log('move')
24 | if (o.x < 0 || o.x > 450){
25 | o.speedX = -o.speedX
26 | }
27 | if (o.y < 0 || o.y > 300){
28 | o.speedY = -o.speedY
29 | }
30 | //move
31 | o.x += o.speedX
32 | o.y += o.speedY
33 | }
34 |
35 | }
36 | o.rebound = function(){
37 | o.speedY *= -1
38 | }
39 | return o
40 | }
--------------------------------------------------------------------------------
/block_game/paddle.js:
--------------------------------------------------------------------------------
1 | var Paddle = function(game){
2 | // var image =imagefrompath('./image/borad.png')
3 | // var o = {
4 | // image: image,
5 | // x: 68,
6 | // y: 250,
7 | // wid: 250,
8 | // hei: 20,
9 | // speed: 10,
10 | // }
11 | var o = game.imagefromname('paddle')
12 | o.x = 150
13 | o.y = 270
14 | o.speed = 10
15 | var paddle = o
16 | o.move = function(x){
17 | if (x < 0){
18 | x =0
19 | }
20 | if (x > 450 - o.image.width){
21 | x = 450 - o.image.width
22 | }
23 | o.x = x
24 | }
25 | o.moveleft = function(){
26 | o.move(paddle.x - paddle.speed)
27 | }
28 | o.moveright = function(){
29 | o.move(paddle.x + paddle.speed)
30 | }
31 | o.collide = function(ball){
32 | if (ball.y + ball.image.height > o.y){
33 | if (ball.x > o.x && ball.x < o.x + o.image.width){
34 | // log('相撞')
35 | return true
36 | }
37 | }
38 | return false
39 | }
40 | return o
41 | }
--------------------------------------------------------------------------------
/block_game/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | my little game
6 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | 空格:小球秋发射
29 | a/方向左键 :平板左移
30 | d/方向右键 :平板右移
31 | Ctrl键:小球秋暂停
32 |
33 |
34 |
--------------------------------------------------------------------------------
/picture_to_str/ascii.py:
--------------------------------------------------------------------------------
1 | #encoding:utf-8
2 | from PIL import Image
3 | import argparse
4 |
5 | parser = argparse.ArgumentParser()
6 |
7 | parser.add_argument('file')
8 | parser.add_argument('-o','--output')
9 | parser.add_argument('--width',type = int,default = 80)
10 | parser.add_argument('--height',type = int,default = 80)
11 |
12 | args = parser.parse_args()
13 |
14 | IMG = args.file
15 | WIDTH =args.width
16 | HEIGHT =args.height
17 | OUTPUT =args.output
18 |
19 | ascii_char = list("$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`'. ")
20 | def get_char(r,g,b,alpha = 256):
21 | if alpha == 0:
22 | return ''
23 | length = len(ascii_char)
24 | gray = int(0.2126 * r + 0.7152 * g + 0.0722 * b)
25 | unit = (256.0 +1)/length
26 | return ascii_char[int(gray/unit)]
27 |
28 | if __name__ == '__main__':
29 | im = Image.open(IMG)
30 | im = im.resize((WIDTH,HEIGHT),Image.NEAREST)
31 | txt = ""
32 |
33 | for i in range(HEIGHT):
34 | for j in range(WIDTH):
35 | txt +=get_char(*im.getpixel((j,i)))
36 | txt += '\n'
37 | print txt
38 |
39 | if OUTPUT:
40 | with open(OUTPUT,'W') as f:
41 | f.write(txt)
42 | else:
43 | with open("output.txt",'w') as f:
44 | f.write(txt)
45 |
--------------------------------------------------------------------------------
/chat_myself/main_only.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | # -*- coding: UTF-8 -*-
3 | '''Risk2S'''
4 | import corpus_data
5 | import re
6 | import random
7 |
8 | #3常规的正则匹配
9 | def fuzzfind(user_question,collection):
10 | suggestions = []
11 | pattern = '.*'.join(user_question) # Converts 'djm' to 'd.*j.*m'
12 | # pattern = '.*'+pattern+'.*'
13 | # print(pattern)
14 | regex = re.compile(pattern)
15 | # print(regex)
16 | # print(collection)
17 | match = regex.search(collection)
18 | if match:
19 | suggestions.append(collection)
20 | return suggestions
21 |
22 | #2
23 | def question_back_list(user_question):
24 | # 所有语料
25 | # print(corpus_data.text)
26 | app_answer = []
27 | for question in corpus_data.text:
28 | collection = question['question_main']
29 | collection = collection.lower()
30 | # print(collection)
31 | temporary_answer = fuzzfind(user_question,collection)
32 | # print(temporary_answer)
33 | if temporary_answer != []:
34 | # return temporary_answer
35 | app_answer.append(temporary_answer)
36 | # print(app_answer)
37 | return app_answer
38 |
39 | #1
40 | def find_answer(user_question):
41 | question_back_list_new = question_back_list(user_question)
42 | question_back_list_new = [str for str in question_back_list_new if str not in [None]]
43 | if question_back_list_new == []:
44 | return "对不起,我没检索到这个问题!"
45 | question_final = question_back_list_new[0] #random.randint(0,len(question_back_list_new)-1)
46 | for ques in corpus_data.text:
47 | if str(ques['question_main']).lower() == question_final[0]:
48 | return ques['answer_only']
49 |
50 |
51 | if __name__ == '__main__':
52 | while True:
53 | # user_question = "aiter"
54 | user_question = input("请输入问题:")
55 | # print("用户提问:"+user_question)
56 | user_question = user_question.replace(" ","")
57 | print("机器回答:",end='')
58 | print(find_answer(user_question))
59 | if user_question == "exit":
60 | break
61 |
--------------------------------------------------------------------------------
/chat_myself/corpus_data.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | # -*- coding: UTF-8 -*-
3 | '''Risk2S'''
4 |
5 | text = [{
6 | "question_id":1,
7 | "question_main":"My dear, what's for supper?",
8 | "answer_only":"你在搞什么飞机。",
9 | },{
10 | "question_id":2,
11 | "question_main":"Waiter, can you come here for a moment?",
12 | "answer_only":"Yes, is there something wrong?",
13 | },{
14 | "question_id":3,
15 | "question_main":"Pam, where's the closest ATM?",
16 | "answer_only":"It's not that far. Do you see that Yellow building over there?",
17 | },{
18 | "question_id":4,
19 | "question_main":"Mom, I just finished my paper. Can you proofread it before I hand it in?",
20 | "answer_only":"Sure, let's take a look. Sweetie, this is terrific. Your ideas are so original.",
21 | },{
22 | "question_id":5,
23 | "question_main":"The last thing to be ignored at a Chinese dinner table is to keep modest.",
24 | "answer_only":"Does that suggest diners avoid speaking much? The same is true in the West.",
25 | },{
26 | "question_id":6,
27 | "question_main":" ",
28 | "answer_only":"I don't you say what.",
29 | },{
30 | "question_id":7,
31 | "question_main":"续贷都需要什么东西?",
32 | "answer_only":"身份证、学生证复印件",
33 | },{
34 | "question_id":8,
35 | "question_main":"贷款那里什么时候上班?",
36 | "answer_only":"8:30~12:00 12:00~18:00",
37 | },{
38 | "question_id":9,
39 | "question_main":"",
40 | "answer_only":"I don't you say what.",
41 | },{
42 | "question_id":10,
43 | "question_main":"新生贷款需要什么资料?",
44 | "answer_only":"个人身份证,录取通知书,父母身份证(可由手机拍下来打印,户口本也可)。",
45 | },{
46 | "question_id":11,
47 | "question_main":"今年不贷款了,也可以毕业才还吗?",
48 | "answer_only":"可以",
49 | },{
50 | "question_id":12,
51 | "question_main":"不贷款了,怎么还款?",
52 | "answer_only":"登录系统,填申请还款,将钱打进贷款给的支付宝或者将钱放在卡里到梁叔处还款。",
53 | },{
54 | "question_id":13,
55 | "question_main":"周末上班吗?",
56 | "answer_only":"最好不要哦!工作人员也是需要休息的哟!",
57 | },{
58 | "question_id":14,
59 | "question_main":"地址在哪儿?",
60 | "answer_only":"思源广场思源小学上八部阶梯,左转。",
61 | },{
62 | "question_id":999,
63 | "question_main":"",
64 | "answer_only":"",
65 | },]
66 |
67 | # for item in text:
68 | # print(item["question_id"])
69 |
--------------------------------------------------------------------------------
/block_game/game.js:
--------------------------------------------------------------------------------
1 | var little_game = function(fps, images, runCallback){
2 | // images 是一个对象,里面是图片的引用名字 路径
3 | // 程序在所有图片 载入成功之后 运行
4 | var g = {
5 | actions: {},
6 | keydowns: {},
7 | images: {},
8 | }
9 | var canvas = document.querySelector('#id-canvas')
10 | var context = canvas.getContext('2d')
11 | g.canvas = canvas
12 | g.context = context
13 | //draw
14 | g.drawImage = function(llgame){
15 | //drawImage(img,0,0,你想拉伸为的宽度,你想要拉伸为的高度)
16 | // g.context.drawImage(llgame.image, llgame.x, llgame.y, llgame.wid, llgame.hei)
17 | g.context.drawImage(llgame.image, llgame.x, llgame.y)
18 | }
19 | // evrnts
20 | window.addEventListener('keydown', function(event){
21 | // 获取键 代码------------
22 | // log(event)
23 | g.keydowns[event.key] = true
24 | })
25 | window.addEventListener('keyup', function(event){
26 | g.keydowns[event.key] = false
27 | })
28 | g.registerAction = function(key, callback){
29 | g.actions[key] = callback
30 | }
31 | // timer
32 | window.fps = 30
33 | var runloop = function(fps){
34 | // log(window.fps)
35 | var actions = Object.keys(g.actions)
36 | for (var i = 0; i < actions.length; i++){
37 | var key = actions[i]
38 | if(g.keydowns[key]){
39 | // 按键
40 | g.actions[key]()
41 | }
42 | }
43 | // 刷新x和y
44 | g.update()
45 | // clear 渲染页面
46 | context.clearRect(0, 0, canvas.width, canvas.height)
47 | // draw
48 | g.draw()
49 | // next one
50 | setTimeout(function(){
51 | runloop()
52 | }, 1000/window.fps)
53 | }
54 | // 预先载入所有图片
55 | var loads = []
56 | var names = Object.keys(images)
57 | for (var i = 0; i < names.length; i++) {
58 | let name = names[i]
59 | var path = images[name]
60 | let img = new Image()
61 | img.src = path
62 | img.onload = function() {
63 | // 所有图片载入成功 运行 run
64 | // 存入 g.images当中
65 | g.images[name] = img
66 | loads.push(1)
67 | log('load images')
68 | if (loads.length == names.length) {
69 | log('g.run run', g.images)
70 | g.run()
71 | }
72 | }
73 | }
74 | g.imagefromname = function(name) {
75 | var img = g.images[name]
76 | var image = {
77 | w: img.width,
78 | h: img.height,
79 | image: img,
80 | }
81 | return image
82 | }
83 | g.run = function() {
84 | runCallback(g)
85 | // 程序运行
86 | // 定时器
87 | setTimeout(function(){
88 | runloop()
89 | }, 1000/fps)
90 | }
91 | return g
92 | }
--------------------------------------------------------------------------------
/block_game/main.js:
--------------------------------------------------------------------------------
1 | var loadlevel = function(game, n){
2 | n = n - 1
3 | var level = levels[n]
4 | var blocks = []
5 | for (var i = 0; i < level.length; i++) {
6 | var p = level[i]
7 | var b = Block(game, p)
8 | blocks.push(b)
9 | }
10 | return blocks
11 | }
12 |
13 | var blocks = []
14 | var enabledebugMode = function(game, enable){
15 | if (!enable) {
16 | return
17 | }
18 | window.paused = false
19 | // debug 功能 选择关卡
20 | window.addEventListener('keydown', function(event){
21 | var k = event.key
22 | if (k == 'Control'){
23 | // 暂停
24 | window.paused = !window.paused
25 | } else if ('1234567'.includes(k)) {
26 | // debug 关卡
27 | blocks = loadlevel(game, Number(k))
28 | }
29 | })
30 | // 滑条 速度
31 | document.querySelector('#id-input-speed').addEventListener('input', function(event){
32 | var input = event.target
33 | // log(event, input.value)
34 | window.fps = Number(input.value)
35 | })
36 | }
37 |
38 | var __main__ = function(){
39 | var images = {
40 | ball: './image/ball.png',
41 | block: './image/block.png',
42 | // paddle: 'broad.png',
43 | paddle: './image/broad.png',
44 | }
45 | var game = little_game(10, images, function(g){
46 |
47 | var paddle = Paddle(game)
48 | var ball = Ball(game)
49 |
50 | var score = 0
51 | blocks = loadlevel(game, 1)
52 |
53 | var paused = false
54 | // 注册事件
55 | game.registerAction('a', function(){
56 | paddle.moveleft()
57 | })
58 | game.registerAction('ArrowLeft', function(){
59 | paddle.moveleft()
60 | })
61 | game.registerAction('d', function(){
62 | paddle.moveright()
63 | })
64 | game.registerAction('ArrowRight', function(){
65 | paddle.moveright()
66 | })
67 | // 球的事件
68 | game.registerAction(' ', function(){
69 | ball.fire()
70 | })
71 |
72 | game.update = function(){
73 | //暂停
74 | if (window.paused){
75 | return
76 | }
77 | ball.move()
78 | // 判断相撞
79 | if (paddle.collide(ball)){
80 | ball.rebound()
81 | }
82 | // 判断ball和blocks碰撞
83 | for (var i = 0; i < blocks.length; i++) {
84 | var block = blocks[i]
85 | if (block.collide(ball)){
86 | // log('block bengbeng')
87 | block.kill()
88 | ball.rebound()
89 | // 更新分数
90 | score += 100
91 | }
92 | }
93 | //lose
94 | if ((ball.y - ball.image.height) > paddle.y){
95 | log('you lose')
96 | // alert('game over')
97 | }
98 | }
99 | game.draw = function(){
100 | // 画 背景
101 | game.context.fillStyle = '#354'
102 | game.context.fillRect(0, 0, 450,300)
103 | //draw
104 | game.drawImage(paddle)
105 | game.drawImage(ball)
106 | // draw blocks
107 | for (var i = 0; i < blocks.length; i++) {
108 | var block = blocks[i]
109 | if (block.alive) {
110 | game.drawImage(block)
111 | }
112 | }
113 | // draw labels
114 | game.context.fillText('分数:' + score, 10, 290)
115 | }
116 | })
117 |
118 | enabledebugMode(game, true)
119 | log('enabledebugMode(true)')
120 | }
121 |
122 | __main__()
--------------------------------------------------------------------------------
/block_game/index_big.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | my little game
6 |
11 |
12 |
13 |
14 |
15 |
16 |
206 | 空格:小球秋发射
207 | a/方向左键 :平板左移
208 | d/方向右键 :平板右移
209 | Ctrl键:小球秋暂停
210 |
211 |
212 |
--------------------------------------------------------------------------------
/btba_movie_spider/btba_spider.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | # -*- coding: UTF-8 -*-
3 | '''Risk2S'''
4 | import requests
5 | import re
6 | import pymysql
7 |
8 |
9 |
10 | name = "冈仁波齐/Paths of the Soul"
11 | # 将数据传入数据库
12 | def data_to_database(column_name,data):
13 | database = pymysql.connect("localhost", 'root', 'root', 'test', charset="utf8")
14 | # 使用 cursor() 方法创建一个游标对象 cursor
15 | cursor = database.cursor()
16 | # 使用 execute() 方法执行 SQL 查询
17 | sql = "INSERT INTO python_btbar_torrent(%s) VALUES('%s')" % (column_name,data)
18 | try:
19 | cursor.execute(sql)
20 | database.commit()
21 | except:
22 | database.rollback()
23 | print(sql)
24 | # 关闭数据库连接
25 | database.close()
26 | # data_to_database('movie_name', name)
27 |
28 | #首页推荐电影
29 | def index(url):
30 | r = requests.get(url)
31 | # 网页源码
32 | html = r.content.decode('utf-8')
33 | # print(html)
34 | # 正则表达式
35 | pattern = re.compile(
36 | r'| (.*) | (.*).+html">(.*) (.*) | .+html">(.*) | (.*).+ |
')
37 | movie = re.findall(pattern, html)
38 | # print(movie)
39 | # print(len(movie))
40 | for i in range(0, len(movie)):
41 | print(movie[i])
42 | return movie
43 | # url = 'http://www.btba.com.cn/'
44 | # movie_names = index(url)
45 | # for movie_name in movie_names:
46 | # print(movie_name[1])
47 |
48 |
49 |
50 | #首页
51 | def index_to_type(host_url):
52 | r = requests.get(host_url)
53 | html = r.content.decode('utf-8')
54 | pattern = re.compile(r'(.*)')
55 | text = re.findall(pattern, html)
56 | # print(text[0])
57 | # print(type(text[0]))
58 | pattern_two = re.compile(r'
(.*?)')
59 | index_type_url = re.findall(pattern_two, text[0])
60 | # for i in range(0,len(index_type_url)):
61 | # print(index_type_url[i])
62 | index_type_url = index_type_url[:-17:-1]
63 | # print(index_type_url)
64 | index_type_list = []
65 | for i in range(0, len(index_type_url)):
66 | # print("-----------------------------------------------")
67 | # print(index_type_url[i][0])
68 | index_type_url.append(index_type_url[i])
69 | # page_movies(index_type_url[i][0])
70 | return index_type_url
71 |
72 | url_1 = 'http://www.btba.com.cn/type/美剧.html'
73 | # 分类下的电影数据
74 | def page_movies(url_type):
75 | # print(url_page)
76 | r = requests.get(url_type)
77 | # # 网页源码
78 | html = r.content.decode('utf-8')
79 | # print(html)
80 | pattern = re.compile(
81 | r'
\s*\s*.+
\s*.+
\s*.+
\s*.+
\s* ')
82 | movie = re.findall(pattern, html)
83 | type_movie_list = []
84 | for i in range(0, len(movie)):
85 | # print(movie[i])
86 | type_movie_list.append(movie[i])
87 | # page_torrent_list(movie[i][0])
88 | return type_movie_list
89 | # page_movies(url_1)
90 |
91 |
92 | # 获取单个电影的torrent页面
93 | def page_torrent_list(url_movie):
94 | r = requests.get(url_movie)
95 | # 网页源码
96 | html = r.content.decode('utf-8')
97 | # print(html)
98 | pattern = re.compile(r'')
99 | movie_torrent = re.findall(pattern, html)
100 | movie_torrent_list = []
101 | for i in range(0, len(movie_torrent)):
102 | movie_torrent_list.append(movie_torrent[i])
103 | return movie_torrent_list
104 |
105 | # 单个电影的磁力链接
106 | def torent_url_text(url_torrent):
107 | r = requests.get(url_torrent)
108 | # 网页源码
109 | html = r.content.decode('utf-8')
110 | # print(html)
111 | pattern = re.compile(r'')
112 | torretn_text = re.findall(pattern, html)
113 | print(torretn_text)
114 | # torent_url_text('http://www.btba.com.cn/down/417870714418/15.html')
115 |
116 |
117 | ### main_main_main
118 | host_url = 'http://www.btba.com.cn/'
119 | #获取首页分类电影及其URL
120 | index_type_url = index_to_type(host_url)
121 | # print(index_type_url)
122 | for item in index_type_url:
123 | type_url = item[0]
124 | # 获取分类下电影的URL和名字
125 | type_total_movie_list = []
126 | try:
127 | for i in range(1,99):
128 | type_movie_list = page_movies(index_type_url[6][0]+"?page={}".format(i))
129 | # print(index_type_url[6][0]+"?page={}".format(i))
130 | if i == 1:
131 | type_total_movie_list = type_total_movie_list + type_movie_list
132 | type_movie_list = []
133 | continue
134 | if type_movie_list[0] == type_total_movie_list[0]:
135 | break
136 | else:
137 | type_total_movie_list = type_total_movie_list + type_movie_list
138 | type_movie_list = []
139 | for j in type_total_movie_list:
140 | # type_total_movie_list = type_total_movie_list[0]
141 | # print(type_total_movie_list)
142 | # 获取电影torrent页面
143 | url_movie = j[0]
144 | movie_torrent_list = page_torrent_list(url_movie)
145 | for item in movie_torrent_list:
146 | print(item)
147 | #磁力链接
148 | # for movie_torrent in movie_torrent_list:
149 | # print(torent_url_text(movie_torrent[0]))
150 | except:
151 | continue
152 |
--------------------------------------------------------------------------------
/base64_number.py:
--------------------------------------------------------------------------------
1 | #-*- coding:utf-8 -*-
2 |
3 | import base64
4 |
5 | code = "Vm0wd2QyUXlVWGxWV0d4V1YwZDRWMVl3WkRSV01WbDNXa1JTVjAxV2JETlhhMUpUVmpBeFYySkVUbGhoTVVwVVZtcEJlRll5U2tWVWJHaG9UVlZ3VlZacVFtRlRNbEpJVm10a1dHSkdjRTlaVjNSR1pVWmFkR05GU214U2JHdzFWVEowVjFaWFNraGhSemxWVmpOT00xcFZXbUZrUjA1R1drWndWMDFFUlRGV1ZFb3dWakZhV0ZOcmFHaFNlbXhXVm1wT1QwMHhjRlpYYlhSWFRWaENSbFpYZUZOVWJVWTJVbFJDVjAxdVVuWlZha1pYWkVaT2NscEdhR2xTTW1ob1YxWlNTMkl4U2tkWGJHUllZbFZhY1ZadGRHRk5SbFowWlVaT1ZXSlZXVEpWYkZKSFZqRmFSbUl6WkZkaGExcG9WakJhVDJOdFJraGhSazVzWWxob1dGWnRNWGRVTVZGM1RVaG9hbEpzY0ZsWmJGWmhZMnhXY1ZGVVJsTk5XRUpIVmpKNFQxWlhTa2RqUm14aFUwaENTRlpxUm1GU2JVbDZXa1prYUdFeGNHOVdha0poVkRKT2RGSnJhR2hTYXpWeldXeG9iMWRHV25STldHUlZUVlpHTTFSVmFHOWhiRXB6WTBac1dtSkdXbWhaTVZwaFpFZFNTRkpyTlZOaVJtOTNWMnhXYjJFeFdYZE5WVlpUWVRGd1YxbHJXa3RUUmxweFVtMUdVMkpWYkRaWGExcHJZVWRGZUdOSE9WZGhhMHBvVmtSS1QyUkdTbkpoUjJoVFlYcFdlbGRYZUc5aU1XUkhWMjVTVGxOSFVuTlZha0p6VGtaVmVXUkhkRmhTTUhCSlZsZDRjMWR0U2tkWGJXaGFUVzVvV0ZsNlJsZGpiSEJIV2tkc1UySnJTbUZXTW5oWFdWWlJlRmRzYUZSaVJuQlpWbXRXZDFZeGJISlhhM1JVVW14d2VGVXlkR0ZpUmxwelYyeHdXR0V4Y0hKWlZXUkdaVWRPUjJKR2FHaE5WbkJ2Vm10U1MxUnRWa2RqUld4VllsZG9WRlJYTlc5V1ZscEhXVE5vYVUxWFVucFdNV2h2VjBkS1dWVnJPVlpoYTFwSVZHeGFZVmRGTlZaUFYyaHBVbGhCZDFac1pEUmpNV1IwVTJ0b2FGSnNTbGhVVlZwM1ZrWmFjVk5yWkZOaVJrcDZWa2N4YzFVeVNuSlRiVVpYVFc1b1dGZFdXbEpsUm1SellVWlNhVkp1UWxwV2JYUlhaREZaZUdKSVNsaGhNMUpVVlcxNGQyVkdWbGRoUnpsb1RWWndlbFl5Y0VkV01ERjFZVWhLV2xaWFVrZGFWM2hIWTIxS1IyRkdhRlJTVlhCS1ZtMTBVMU14VlhoWFdHaFlZbXhhVjFsc1pHOVdSbXhaWTBaa2JHSkhVbGxhVldNMVlWVXhXRlZyYUZkTmFsWlVWa2Q0YTFOR1ZuTlhiRlpYWWtoQ1NWWkdVa2RWTVZwMFVtdG9VRll5YUhCVmJHaERUbXhrVlZGdFJtcE5WMUl3VlRKMGIyRkdTbk5UYkdoVlZsWndNMVpyV21GalZrNXlXa1pPYVZKcmNEWldhMk40WXpGVmVWTnVTbFJpVlZwWVZGYzFiMWRHWkZkWGJFcHNVbTFTZWxsVldsTmhWa3AxVVd4d1YySllVbGhhUkVaYVpVZEtTVk5zYUdoTk1VcFZWbGN4TkdReVZrZFdXR3hyVWpOU2IxbHNWbmRXTVZwMFkwZEdXR0pHY0ZoWk1HUnZWMnhhV0ZWclpHRldWMUpRVlRCVk5WWXhjRWhoUjJoT1UwVktNbFp0TVRCVk1VMTRWVmhzVm1FeVVsWlpiWFIzWVVaV2RHVkZkR3BTYkhCNFZrY3dOVll4V25OalJXaFlWa1UxZGxsV1ZYaFhSbFoxWTBaa1RsWXlhREpXTVZwaFV6RkplRlJ1VmxKaVJscFlWRlJHUzA1c1drZFZhMlJXVFZad01GVnRkRzlWUmxwMFlVWlNWVlpYYUVSVk1uaGhZekZ3UlZWdGNFNVdNVWwzVmxSS01HRXhaRWhUYkdob1VqQmFWbFp1Y0Zka2JGbDNWMjVLYkZKdFVubGFSV1IzWVZaYWNtTkZiRmRpUjFFd1ZrUktSMVl4VGxsalJuQk9UVzFvV1ZkV1VrZGtNa1pIVjJ4V1UySkdjSE5WYlRGVFRWWlZlV042UmxoU2EzQmFWVmMxYjFZeFdYcGhTRXBWWVRKU1NGVnFSbUZYVm5CSVlVWk9WMVpHV2xaV2JHTjRUa2RSZVZaclpGZGlSMUp2Vlc1d2MySXhVbGRYYm1Sc1lrWnNOVmt3Vm10V01ERkZVbXBHV2xaWGFFeFdNbmhoVjBaV2NscEhSbGROTW1oSlYxUkplRk14U1hoalJXUmhVbFJXVDFWc2FFTlRNVnAwVFZSQ1ZrMVZNVFJXYkdodlYwWmtTR0ZHYkZwaVdHaG9WbTE0YzJOc2NFaFBWM0JUWWtoQ05GWnJZM2RPVmxsNFYyNVNWbUpIYUZoV2FrNU9UVlphV0dNemFGaFNiRnA1V1ZWYWExUnRSbk5YYkZaWFlUSlJNRmRXV2t0ak1WSjFWRzFvVTJKR2NGbFhWM2hoVW0xUmVGZHVSbEppVlZwaFZtMHhVMU5XV2xoa1J6bG9UVlZ3TUZsVldsTldWbHBZWVVWU1ZrMXVhR2haZWtaM1VsWldkR05GTlZkTlZXd3pWbXhTUzAxSFNYbFNhMlJVWW1zMVZWbHJaRzlXYkZwMFpVaGtUazFXYkROV01qVkxZa1pLZEZWdWJHRlNWMUl6V1ZaYVlXTnRUa1ppUm1ScFVqRkZkMWRXVWt0U01WbDRWRzVXVm1KRlNsaFZiRkpYVjFaYVIxbDZSbWxOVjFKSVdXdG9SMVpIUlhoalNFNVdZbFJHVkZZeWVHdGpiRnBWVW14a1RsWnVRalpYVkVKaFZqRmtSMWRZY0ZaaWEzQllWbXRXWVdWc1duRlNiR1JxVFZkU2VsbFZaSE5XTVZwMVVXeEdWMkV4Y0doWFZtUlNaVlphY2xwR1pGaFNNMmg1VmxkMFYxTXhaRWRWYkdSWVltMVNjMVp0TVRCTk1WbDVUbGQwV0ZKcmJETldiWEJUVjJzeFIxTnNRbGROYWtaSFdsWmFWMk5zY0VoU2JHUk9UVzFvU2xZeFVrcGxSazE0VTFob2FsSlhhSEJWYlRGdlZrWmFjMkZGVGxSTlZuQXdWRlpTUTFack1WWk5WRkpYWWtkb2RsWXdXbXRUUjBaSFlrWndhVmRIYUc5V2JYQkhZekpOZUdORmFGQldiVkpVV1d4b2IxbFdaRlZSYlVab1RXdHdTVlV5ZEc5V2JVcElaVWRvVjJKSFVrOVVWbHB6VmpGYVdXRkdhRk5pUm5BMVYxWldZV0V4VW5SU2JrNVlZa1phV0ZsVVNsSk5SbFkyVW10MGFrMVlRa3BXYlhoVFlWWktjMk5HYkZoV00xSm9Xa1JCTVdNeFpISmhSM2hUVFVad2FGWnRNSGhWTVVsNFZXNU9XR0pWV2xkVmJYaHpUbFpzVm1GRlRsZGlWWEJKV1ZWV1QxbFdTa1pYYldoYVpXdGFNMVZzV2xka1IwNUdUbFprVGxaWGQzcFdiWGhUVXpBeFNGTlliRk5oTWxKVldXMXpNVlpXYkhKYVJ6bFhZa1p3ZWxZeU5XdFVhekZYWTBoc1YwMXFSa2haVjNoaFkyMU9SVkZ0UmxOV01VWXpWbTF3UzFNeVRuTlVia3BxVW0xb2NGVnRlSGRsVm1SWlkwVmtWMkpXV2xoV1J6VlBZVlpLZFZGck9WVldla1oyVmpGYWExWXhWbkphUjNST1lURndTVlpxU2pSV01WVjVVMnRrYWxORk5WZFpiRkpIVmtaU1YxZHNXbXhXTURReVZXMTRhMVJzV25WUmFscFlWa1ZLYUZacVJtdFNNV1IxVkd4U2FFMXRhRzlXVjNSWFdWZE9jMVp1UmxSaE0xSlZWbTE0UzAxR2JGWlhhemxYVFZad1NGWXljRXRXTWtwSVZHcFNWV0V5VWxOYVZscGhZMnh3UjFwR2FGTk5NbWcxVm14a2QxUXhWWGxUV0docFUwVTFXRmx0TVZOWFJsSlhWMjVrVGxKdGRETlhhMVpyVjBaSmQyTkZhRnBOUm5CMlZqSnplRk5HVm5WWGJHUk9ZbTFvYjFacVFtRldNazV6WTBWb1UySkhVbGhVVmxaM1ZXeGFjMVZyVG1oTlZXdzBWVEZvYzFVeVJYbGhTRUpXWWxoTmVGa3dXbk5XVmtaMVdrVTFhVkp1UVhkV1JscFRVVEZhY2sxV1drNVdSa3BZVm01d1YxWkdXbkZUYTFwc1ZteGFNVlZ0ZUdGaFZrbDRVbGhrVjJKVVJUQlpla3BPWlVkT1JtRkdRbGRpVmtwVlYxZDBWMlF4WkhOWGEyaHNVak5DVUZadGVITk9SbGw1VGxaT1YySlZjRWxaVlZwdlZqSkdjazVWT1ZWV2JIQm9WakJrVG1WdFJrZGhSazVwVW01Qk1sWXhXbGRaVjBWNFZXNU9XRmRIZUc5VmExWjNWMFpTVjFkdVpHaFNiRmt5VlcxME1HRnJNVmRUYWtaWFZqTm9VRmxXV2twbFJrNTFXa1prYUdFd2NGaFdSbFpXWlVaSmVGcElTbWhTTTFKVVZGVmFkMlJzV2tkYVNIQk9WakZhZWxZeGFITlVNVnB5VGxjNVZWWnNXak5VVlZwaFYwVTFWbFJzWkU1aE0wSktWMVpXVjFVeFdsaFRiR3hvVWpKb1dGbHJXbmRWUmxwelYydDBhazFXY0hsVWJGcHJZVmRGZDFkWWNGZGlXR2h4V2tSQmVGWXhVbGxoUm1ob1RXMW9WbGRYZEd0aU1rbDRWbTVHVW1KVldsaFphMXAzVFVad1ZtRkhkRlZoZWtaYVZWZDRjMWxXV2xoaFJYaGFZVEZ3WVZwVldtdGpiVTVIWVVkb1RsZEZTbEpXYlRGM1V6RktkRlpyYUZWaE1WcFlXV3RrVTFaR1ZuTlhibVJzVm0xU1dsa3dWbXRXTWtwWFVtcE9WVlpzV25wWlZscEtaVmRHUjFWc2NHbFNNbWd5Vm1wR1lXRXhaRWhXYTJoUVZtdHdUMVpzVWtaTlJtUlZVVzFHV2xac2JEUlhhMVp2WVVaS2MxTnNXbGRpVkVaVVZtdGFkMWRIVmtsVWJHUnBVakZLTmxaclkzaGlNVmw1VWxod1VsZEhhRmhXYlRGU1RVWndSVkpzY0d4V2F6VjZXV3RhWVdGV1NYbGhSemxYVmpOU1dGZFdaRTlqTVZwMVVteFNhRTB4U2xaV2JURjZUVlV4UjFadVVteFNWR3h3VldwQ2QxZHNiRlpWYkU1WFRVUkdXVlpXYUd0WFJscDBWV3hPWVZac2NHaFpNbmgzVWpGd1IyRkdUazVOYldjeFZtMTRhMlF4UlhoaVJtaFZZVEpTV0ZsdGVFdGpNVlYzV2taT2FrMVhlSGxXTWpWUFZERmFkVkZzWkZwV1YxRjNWakJhUzJOdFNrVlViR1JwVjBWS1ZWWnFTbnBsUmtsNFZHNU9VbUpIVWs5WlYzUmhVMFprYzFkdFJsZE5helY2V1RCV2IxVXlTa2hWYXpsVlZucEdkbFV5ZUZwbFJsWnlZMGQ0VTJGNlJUQldWRVp2WWpKR2MxTnNhRlppVjJoWFdXdGFTMWRHV2tWU2JHUnFUV3RhUjFaSGVGTlViRnAxVVZoa1YxSnNjRlJWVkVaaFkyc3hWMWRyTlZkU2EzQlpWMWQwYTJJeVVuTlhXR1JZWWxoU1ZWVnFRbUZUVm14V1YyMUdWV0pGY0RGVlZ6QTFWakpLVlZKVVFscGxhM0JRV1hwR2QxTldUblJrUms1T1RVVndWbFl4WkRCaU1VVjNUbFZrV0dKcmNHRlVWRXBUVlVaYWRHVklUazlTYkd3MVZHeFZOV0ZIU2taalJteGFWbFp3ZWxacVNrWmxSbHBaWVVkR1UwMHlhRFpXYlhCSFdWWmtXRkpyWkdoU2F6VndWVzAxUWsxc1dYaFhiR1JhVmpCV05GWlhOVTlYUm1SSVpVYzVWbUV4V2pOV01GcFRWakZrZFZwSGFGTmlSbXQ1VmxjeE1FMUhSbkpOVm1SVVlXdGFXRlpxVG05U1JscHhVMnQwVTAxck5VaFphMXB2VmpBd2VGTnFTbGRXYkVwSVZsUkdXbVZIVGtaaVJsWnBVakpvZDFadGVHRmtNV1JIVjJ0a1dHSlZXbkZVVlZKWFUwWlplR0ZJVGxWTlZuQjVWR3hqTlZaV1duTlhibkJWWWtad2VsWnRNVWRTYkZKeldrZHNWMWRGU2t0V01WcFhWakZWZUZkWVpFNVdiVkp4VldwS2IxbFdVbGRYYm1SV1VtMTBORll5ZUd0aGF6RllWVzVzVldKR2NISldSM2hoVjBkUmVtTkdaR2xYUjJoVlZsaHdRbVZHVGtkVWJHeHBVbXMxYjFSWGVFdFdiR1JZVFZod1RsWnNjRmhaYTJoTFdWWktObUpHYUZwaE1YQXpXbGQ0V21WVk5WaGtSbFpvWld0YVdsZHNWbUZoTVZsM1RWaEdWMkpyY0ZoV2ExWjNWRVpWZUZkclpHcGlWVnBJVjJ0YVQxUnJNWFJoUmxwWFlsUkdNMVY2Ums1bFZsSjFWR3hXYVdFelFuWldWekI0VlRGYVIxVnNWbFJpVkd4d1ZGWmFkMlZXV2xoa1JFSldUVVJHV1ZaWGRHOVdhekYxWVVod1dGWnNjRXRhVjNoSFl6RldjMXBIYUdobGJGbDVWbTF3UjFsWFJYaGFSV2hYWVRKb1VWWnRkSGRVTVZwMFpFaGtWRlp0VWxaVlZ6RkhZVlV4Y2xkcVFsZGlWRlpNVmpCa1MxTkhWa2RhUm5CcFVqSm9WVlpHVWtka01WbDRXa2hTYTFJelFuQlZha1pLWkRGYVJWSnRkR2xOVm13elZGWldhMkZGTUhsbFJtaGFZa1pLUTFwVlduTmpWa3B6WTBkNFUySldTalZXYWtvMFZUSkdXRk5yYkZKaVIyaFlXV3hvVTFkR1pGZGFSbVJxVFZkU01WVnRlRTloVmtsNFUyNW9WMUpzY0hKV1ZFcFhZekpLUjFkdFJsUlNWRloyVm0weE5HUXlWbGRoTTJSV1lsVmFXRlJWVWtkWFZscFhZVWQwV0ZKc2NEQldWM2hQV1ZaYWMyTkhhRnBOYm1nelZXcEdkMUl5UmtkVWF6Vk9ZbGRqZUZadE1UUmhNREZIVjFob1ZWZEhhR2hWYkdSVFZqRnNjbHBHVGxoV2JYZ3dWRlphVDJGck1WZGpSRUpoVmxkb1VGWkVSbUZrVmtaeldrWndWMVl4UmpOV2FrSmhVMjFSZVZScldtaFNia0pQVlcwMVEwMXNXbkZUYm5Cc1VtczFTVlZ0ZEdGaVJrcDBWV3M1V21KVVJuWlpha1poWTFaR2RGSnNaRTVoZWxZMlYxUkNWMkl4VlhsVGEyaFdZa2RvVmxadGVHRk5NVnBZWlVkR2FrMVdXbmxXUjNocllVZFdjMWRzYkZkaGExcDJXV3BLUjJNeFRuTmhSMmhUWlcxNFdGZFdaREJrTWxKelYydFdVMkpHY0hKVVZscDNaVlp3UmxaVVJtaFdhM0F4VlZab2ExZEhTa2RYYmtaVllrZFNSMXBFUVhoV01XUnlUbFprVTJFelFscFdiVEIzWlVkSmVWVnVUbGhYUjFKWldXeG9VMVpXVm5GUmJVWlVZa1phTUZwVlpFZGhSbHB5WWtSU1ZtSkhhSEpXYWtwTFZsWktWVkZzY0d4aE0wSlFWMnhXWVdFeVVsZFdiazVWWWxkNFZGUldWbmRXYkZsNFdrUkNWMDFzUmpSWGEyaFBWMGRGZVdGSVRsWmhhelZFVmxWYVlXUkZNVmRVYkZKVFlrZDNNVlpIZUZaT1YwWklVMnRhYWxKRlNtaFdiR1JUVTBaYWMxZHRSbGROYXpWSVYydGFWMVl5U2tsUmFscFhZbGhDU0ZkV1dtdFhSa3B5WVVkd1UwMXVhRmxXYWtKWFV6Rk9SMWR1VW14U00xSlFWV3BDVjA1R1dsaE9WazVXVFd0d2VWUnNXbk5YYlVWNFkwZG9WMDFXY0doYVJWVjRWakZPY2s1V1RtbFNiWFExVm14amQyVkdTWGxTYmxKVFlXeHdXRmxyWkc5WlZteFZVbTVrVlZKdGVGaFdNblF3WVdzeGNrNVZhRnBoTVhCMlZtcEJkMlZHVG5SUFZtaG9UVlZ3U1ZkV1VrZFhiVlpIWTBWc1ZHSlhhRlJVVkVaTFZsWmFSMVp0Um10TlYxSllWakowYTFsV1RrbFJiazVXWWtaS1dGWXdXbUZrUlRWWFZHMW9UbFpYT0hsWFYzUmhZVEZhZEZOc2JHaFRTRUpXV1d0YWQyVnNXblJOVldSVFlrWktlbGRyWkhOV01XUkdVMnQwVjAxV2NGaFdha1pXWlVaa1dWcEZOVmRpVmtwNFZsZHdTMkl4YkZkVmJHUllZbTFTVjFWdE1UQk9SbGw1WlVkMGFHRjZSbGxXVnpWelZsZEtSMk5JU2xkU00yaG9WakJrVW1WdFRrZGFSMnhZVWpKb1ZsWnNhSGRSYlZaSFZHdGtWR0pIZUc5VmFrSmhWa1phY1ZOdE9WZGlSMUpaV2tWa01HRlZNWEppUkZKWFlsUldWRlpIZUdGT2JVcElVbXhrYVZkSFozcFhiRnBoV1ZkU1JrMVdXbUZTYkZwdldsZDBZVmRzWkhOV2JVWm9UVlpzTTFSV2FFZFdNa3B5WTBab1YyRXhXak5XUlZwV1pVWmtjbHBIY0dsV1ZuQkpWakowWVZReFVuSk5XRkpvVW14d1dGbHNVa2ROTVZZMlVtczFiRlpzU2pGV1IzaFhZVmRGZWxGdWFGZFdla0kwV1dwS1QxSXhXblZWYlhoVVVqRktkMVpHV210Vk1XUkhWMnhvYTFKRlNsZFVWVkpIVjBac2NsVnNUbGROVld3MldWVm9kMWRzV1hwaFJYaGhVbXh3U0ZreWN6VldNVnB6V2tkNGFFMVhPVFZXYlRGM1VqRnNWMkpHWkZSWFIyaHdWV3RhZDFaR2JITmFSRkpWVFZad2VGVnRkREJXUmxwelkwaG9WazFXU2toV1ZFRjRWakZhY1Zac1drNWliRXB2VjFaa05GUXhTbkpPVm1SaFVtNUNjRlZ0ZEhkVFZscDBaRWRHV0dKV1dsbFdiWFJ2WVRGSmVsRnVRbFppVkZaRVZtcEdZVmRGTVZWVmJXeE9WbXhaTVZaWGVHOWtNVlowVTJ4YVdHSkhhRmhaYkZKSFZURlNWbGR1VGs5aVJYQXdXa1ZhVDFSc1dYaFRXR2hYWWtkUk1GZFdaRWRUUms1eVlrWkthVkl4U2xsWFYzaFRVbXN4UjJORlZsUmlSMUp4VkZaa1UwMVdWblJsUlRsb1ZtdHNORlV5Tlc5V01VcHpZMGhLVjFaRmNGaFpla3BMVWpGa2RGSnNVbE5XUmxveVZtMHdlRTVIVVhsV2JHUm9UVEpTV1ZsdE1WTlhSbEpZWkVoa1ZGWnNjRWxaTUZwUFZqRlpkMVpxVmxkV00yaFFWMVphWVdNeVRraGhSbkJPWW0xbmVsWlhjRWRrTVU1SVUydG9hVkpyTlZsVmJGWjNWVEZhZEUxSVpHeFNWRlpKVld4b2IxWXhaRWhoUjJoV1lrZFNWRlpxUm5OamJHUjFXa1prVGxZemFGZFdWRW8wVkRKR2NrMVdaR3BTUlVwb1ZteGFXbVF4YkhKYVJYUlRUV3MxUmxWWGVGZFdNVnB5WTBac1YySllRa05hVlZwTFZqRk9kVlJ0UmxOaWEwcDNWMWN4TUZNeFVsZFhibEpPVTBkb1ZWUldaRk5YUmxwMFRsWmtXRkl3Y0VsV1Z6QTFWMnhhUmxkcVRscGhhMXBvVmpCVmVGWldWblJoUlRWb1pXeFdNMVp0TUhoTlIwVjRZa1prVkZkSGVHOVZibkJ6Vm14YWNsWnJkRlZTYkhCWldsVmtSMkZyTVZoa1JGcGFWbFpWTVZaVVNrdFhWMFpIWTBaa2FFMVlRakpYVjNCTFVqSk5lRlJ1VG1oU01taFZWV3hXZDFkR1pGaGxSemxWWWxaYVNGWXlkRmRWTWtwV1YyNUdWVlp0VWxSYVYzaHlaREZ3UlZWdGFGZGhNMEY0VmxaYWIyRXhaRWhUYTJSWVltdHdWMWxYZEdGaFJtdDVZek5vVjAxWFVqQlphMXBQVlRKRmVsRnRPVmROVm5CVVZXcEtVbVZXVW5WVWJHaFlVakZLYjFaWGVHOVZNazVYWWtoT1YxWkZXbFJVVmxwSFRrWlplVTFVUW1oU2JIQXdWbGQwYzFkSFJuSk9WRTVYWVd0d1NGa3llRTlrUjBaSFkwZDRhRTFZUWpWV2JYQkRXVlpWZVZSdVRtcFNWMmhVV1d0Vk1XTkdXblJrU0dSWFlrWnNORmRyVWtOWGJGbDRVbXBPVldKR2NISldNR1JMWXpGT2NrOVdaR2hOVm5CTlZqRmFZVmxYVWtoV2ExcGhVbFJzVkZscmFFSmtNV1J6Vm0xR2FFMVdjRmxWTW5SaFlXeEtXR1ZIUmxWV1JUVkVXbFphVjFJeFNsVmlSa1pXVmtSQk5RPT0="
6 |
7 | i = 0
8 |
9 | while ('key' not in code):
10 | code = base64.b64decode(code)
11 | i += 1
12 | print code
13 | print "加密 %d 次"%i
14 |
--------------------------------------------------------------------------------
/btba_movie_spider/movie_list.md:
--------------------------------------------------------------------------------
1 | Connected to pydev debugger (build 171.4424.42
2 |
3 |
4 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
5 |
6 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
7 |
8 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
9 | /The Wall.3.1GB.torrent'
10 |
11 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
12 | /The Wall.4.37GB.torrent'
13 |
14 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
15 | /血战太平洋.55.25GB.torrent'
16 |
17 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
18 | /血战太平洋.64.16GB.torrent'
19 |
20 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
21 |
22 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
23 |
24 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
25 |
26 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
27 |
28 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
29 |
30 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
31 |
32 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
33 |
34 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
35 |
36 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
37 |
38 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
39 |
40 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
41 |
42 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
43 |
44 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
45 |
46 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
47 |
48 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
49 |
50 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
51 |
52 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
53 | /The Wall.3.1GB.torrent'
54 |
55 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
56 | /The Wall.4.37GB.torrent'
57 |
58 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
59 | /血战太平洋.55.25GB.torrent'
60 |
61 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
62 | /血战太平洋.64.16GB.torrent'
63 |
64 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
65 |
66 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
67 |
68 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
69 |
70 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
71 |
72 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
73 |
74 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
75 |
76 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
77 |
78 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
79 |
80 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
81 |
82 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
83 |
84 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
85 |
86 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
87 |
88 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
89 |
90 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
91 |
92 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
93 |
94 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
95 |
96 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
97 | /The Wall.3.1GB.torrent'
98 |
99 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
100 | /The Wall.4.37GB.torrent'
101 |
102 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
103 | /血战太平洋.55.25GB.torrent'
104 |
105 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
106 | /血战太平洋.64.16GB.torrent'
107 |
108 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
109 |
110 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
111 |
112 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
113 |
114 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
115 |
116 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
117 |
118 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
119 |
120 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
121 |
122 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
123 |
124 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
125 |
126 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
127 |
128 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
129 |
130 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
131 |
132 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
133 |
134 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
135 |
136 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
137 |
138 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
139 |
140 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
141 | /The Wall.3.1GB.torrent'
142 |
143 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
144 | /The Wall.4.37GB.torrent'
145 |
146 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
147 | /血战太平洋.55.25GB.torrent'
148 |
149 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
150 | /血战太平洋.64.16GB.torrent'
151 |
152 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
153 |
154 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
155 |
156 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
157 |
158 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
159 |
160 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
161 |
162 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
163 |
164 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
165 |
166 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
167 |
168 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
169 |
170 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
171 |
172 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
173 |
174 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
175 |
176 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
177 |
178 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
179 |
180 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
181 |
182 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
183 |
184 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
185 | /The Wall.3.1GB.torrent'
186 |
187 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
188 | /The Wall.4.37GB.torrent'
189 |
190 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
191 | /血战太平洋.55.25GB.torrent'
192 |
193 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
194 | /血战太平洋.64.16GB.torrent'
195 |
196 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
197 |
198 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
199 |
200 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
201 |
202 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
203 |
204 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
205 |
206 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
207 |
208 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
209 |
210 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
211 |
212 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
213 |
214 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
215 |
216 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
217 |
218 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
219 |
220 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
221 |
222 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
223 |
224 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
225 |
226 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
227 |
228 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
229 | /The Wall.3.1GB.torrent'
230 |
231 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
232 | /The Wall.4.37GB.torrent'
233 |
234 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
235 | /血战太平洋.55.25GB.torrent'
236 |
237 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
238 | /血战太平洋.64.16GB.torrent'
239 |
240 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
241 |
242 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
243 |
244 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
245 |
246 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
247 |
248 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
249 |
250 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
251 |
252 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
253 |
254 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
255 |
256 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
257 |
258 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
259 |
260 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
261 |
262 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
263 |
264 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
265 |
266 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
267 |
268 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
269 |
270 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
271 |
272 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
273 | /The Wall.3.1GB.torrent'
274 |
275 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
276 | /The Wall.4.37GB.torrent'
277 |
278 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
279 | /血战太平洋.55.25GB.torrent'
280 |
281 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
282 | /血战太平洋.64.16GB.torrent'
283 |
284 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
285 |
286 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
287 |
288 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
289 |
290 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
291 |
292 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
293 |
294 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
295 |
296 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
297 |
298 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
299 |
300 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
301 |
302 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
303 |
304 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
305 |
306 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
307 |
308 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
309 |
310 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
311 |
312 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
313 |
314 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
315 |
316 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
317 | /The Wall.3.1GB.torrent'
318 |
319 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
320 | /The Wall.4.37GB.torrent'
321 |
322 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
323 | /血战太平洋.55.25GB.torrent'
324 |
325 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
326 | /血战太平洋.64.16GB.torrent'
327 |
328 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
329 |
330 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
331 |
332 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
333 |
334 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
335 |
336 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
337 |
338 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
339 |
340 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
341 |
342 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
343 |
344 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
345 |
346 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
347 |
348 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
349 |
350 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
351 |
352 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
353 |
354 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
355 |
356 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
357 |
358 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
359 |
360 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
361 | /The Wall.3.1GB.torrent'
362 |
363 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
364 | /The Wall.4.37GB.torrent'
365 |
366 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
367 | /血战太平洋.55.25GB.torrent'
368 |
369 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
370 | /血战太平洋.64.16GB.torrent'
371 |
372 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
373 |
374 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
375 |
376 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
377 |
378 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
379 |
380 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
381 |
382 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
383 |
384 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
385 |
386 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
387 |
388 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
389 |
390 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
391 |
392 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
393 |
394 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
395 |
396 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
397 |
398 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
399 |
400 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
401 |
402 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
403 |
404 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
405 | /The Wall.3.1GB.torrent'
406 |
407 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
408 | /The Wall.4.37GB.torrent'
409 |
410 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
411 | /血战太平洋.55.25GB.torrent'
412 |
413 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
414 | /血战太平洋.64.16GB.torrent'
415 |
416 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
417 |
418 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
419 |
420 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
421 |
422 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
423 |
424 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
425 |
426 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
427 |
428 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
429 |
430 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
431 |
432 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
433 |
434 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
435 |
436 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
437 |
438 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
439 |
440 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
441 |
442 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
443 |
444 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
445 |
446 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
447 |
448 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
449 | /The Wall.3.1GB.torrent'
450 |
451 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
452 | /The Wall.4.37GB.torrent'
453 |
454 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
455 | /血战太平洋.55.25GB.torrent'
456 |
457 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
458 | /血战太平洋.64.16GB.torrent'
459 |
460 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
461 |
462 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
463 |
464 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
465 |
466 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
467 |
468 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
469 |
470 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
471 |
472 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
473 |
474 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
475 |
476 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
477 |
478 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
479 |
480 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
481 |
482 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
483 |
484 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
485 |
486 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
487 |
488 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
489 |
490 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
491 |
492 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
493 | /The Wall.3.1GB.torrent'
494 |
495 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
496 | /The Wall.4.37GB.torrent'
497 |
498 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
499 | /血战太平洋.55.25GB.torrent'
500 |
501 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
502 | /血战太平洋.64.16GB.torrent'
503 |
504 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
505 |
506 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
507 |
508 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
509 |
510 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
511 |
512 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
513 |
514 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
515 |
516 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
517 |
518 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
519 |
520 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
521 |
522 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
523 |
524 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
525 |
526 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
527 |
528 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
529 |
530 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
531 |
532 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
533 |
534 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
535 |
536 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
537 | /The Wall.3.1GB.torrent'
538 |
539 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
540 | /The Wall.4.37GB.torrent'
541 |
542 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
543 | /血战太平洋.55.25GB.torrent'
544 |
545 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
546 | /血战太平洋.64.16GB.torrent'
547 |
548 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
549 |
550 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
551 |
552 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
553 |
554 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
555 |
556 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
557 |
558 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
559 |
560 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
561 |
562 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
563 |
564 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
565 |
566 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
567 |
568 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
569 |
570 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
571 |
572 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
573 |
574 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
575 |
576 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
577 |
578 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
579 |
580 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
581 | /The Wall.3.1GB.torrent'
582 |
583 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
584 | /The Wall.4.37GB.torrent'
585 |
586 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
587 | /血战太平洋.55.25GB.torrent'
588 |
589 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
590 | /血战太平洋.64.16GB.torrent'
591 |
592 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
593 |
594 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
595 |
596 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
597 |
598 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
599 |
600 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
601 |
602 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
603 |
604 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
605 |
606 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
607 |
608 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
609 |
610 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
611 |
612 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
613 |
614 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
615 |
616 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
617 |
618 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
619 |
620 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
621 |
622 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
623 |
624 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
625 | /The Wall.3.1GB.torrent'
626 |
627 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
628 | /The Wall.4.37GB.torrent'
629 |
630 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
631 | /血战太平洋.55.25GB.torrent'
632 |
633 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
634 | /血战太平洋.64.16GB.torrent'
635 |
636 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
637 |
638 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
639 |
640 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
641 |
642 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
643 |
644 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
645 |
646 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
647 |
648 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
649 |
650 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
651 |
652 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
653 |
654 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
655 |
656 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
657 |
658 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
659 |
660 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
661 |
662 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
663 |
664 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
665 |
666 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
667 |
668 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
669 | /The Wall.3.1GB.torrent'
670 |
671 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
672 | /The Wall.4.37GB.torrent'
673 |
674 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
675 | /血战太平洋.55.25GB.torrent'
676 |
677 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
678 | /血战太平洋.64.16GB.torrent'
679 |
680 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
681 |
682 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
683 |
684 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
685 |
686 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
687 |
688 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
689 |
690 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
691 |
692 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
693 |
694 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
695 |
696 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
697 |
698 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
699 |
700 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
701 |
702 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
703 |
704 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
705 |
706 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
707 |
708 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
709 |
710 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
711 |
712 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
713 | /The Wall.3.1GB.torrent'
714 |
715 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
716 | /The Wall.4.37GB.torrent'
717 |
718 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
719 | /血战太平洋.55.25GB.torrent'
720 |
721 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
722 | /血战太平洋.64.16GB.torrent'
723 |
724 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
725 |
726 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
727 |
728 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
729 |
730 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
731 |
732 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
733 |
734 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
735 |
736 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
737 |
738 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
739 |
740 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
741 |
742 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
743 |
744 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
745 |
746 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
747 |
748 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
749 |
750 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
751 |
752 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
753 |
754 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
755 |
756 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
757 | /The Wall.3.1GB.torrent'
758 |
759 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
760 | /The Wall.4.37GB.torrent'
761 |
762 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
763 | /血战太平洋.55.25GB.torrent'
764 |
765 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
766 | /血战太平洋.64.16GB.torrent'
767 |
768 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
769 |
770 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
771 |
772 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
773 |
774 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
775 |
776 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
777 |
778 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
779 |
780 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
781 |
782 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
783 |
784 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
785 |
786 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
787 |
788 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
789 |
790 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
791 |
792 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
793 |
794 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
795 |
796 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
797 |
798 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
799 |
800 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
801 | /The Wall.3.1GB.torrent'
802 |
803 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
804 | /The Wall.4.37GB.torrent'
805 |
806 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
807 | /血战太平洋.55.25GB.torrent'
808 |
809 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
810 | /血战太平洋.64.16GB.torrent'
811 |
812 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
813 |
814 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
815 |
816 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
817 |
818 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
819 |
820 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
821 |
822 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
823 |
824 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
825 |
826 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
827 |
828 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
829 |
830 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
831 |
832 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
833 |
834 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
835 |
836 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
837 |
838 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
839 |
840 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
841 |
842 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
843 |
844 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
845 | /The Wall.3.1GB.torrent'
846 |
847 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
848 | /The Wall.4.37GB.torrent'
849 |
850 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
851 | /血战太平洋.55.25GB.torrent'
852 |
853 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
854 | /血战太平洋.64.16GB.torrent'
855 |
856 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
857 |
858 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
859 |
860 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
861 |
862 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
863 |
864 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
865 |
866 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
867 |
868 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
869 |
870 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
871 |
872 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
873 |
874 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
875 |
876 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
877 |
878 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
879 |
880 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
881 |
882 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
883 |
884 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
885 |
886 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
887 |
888 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
889 | /The Wall.3.1GB.torrent'
890 |
891 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
892 | /The Wall.4.37GB.torrent'
893 |
894 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
895 | /血战太平洋.55.25GB.torrent'
896 |
897 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
898 | /血战太平洋.64.16GB.torrent'
899 |
900 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
901 |
902 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
903 |
904 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
905 |
906 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
907 |
908 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
909 |
910 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
911 |
912 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
913 |
914 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
915 |
916 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
917 |
918 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
919 |
920 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
921 |
922 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
923 |
924 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
925 |
926 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
927 |
928 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
929 |
930 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
931 |
932 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
933 | /The Wall.3.1GB.torrent'
934 |
935 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
936 | /The Wall.4.37GB.torrent'
937 |
938 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
939 | /血战太平洋.55.25GB.torrent'
940 |
941 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
942 | /血战太平洋.64.16GB.torrent'
943 |
944 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
945 |
946 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
947 |
948 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
949 |
950 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
951 |
952 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
953 |
954 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
955 |
956 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
957 |
958 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
959 |
960 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
961 |
962 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
963 |
964 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
965 |
966 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
967 |
968 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
969 |
970 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
971 |
972 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
973 |
974 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
975 |
976 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
977 | /The Wall.3.1GB.torrent'
978 |
979 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
980 | /The Wall.4.37GB.torrent'
981 |
982 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
983 | /血战太平洋.55.25GB.torrent'
984 |
985 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
986 | /血战太平洋.64.16GB.torrent'
987 |
988 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
989 |
990 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
991 |
992 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
993 |
994 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
995 |
996 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
997 |
998 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
999 |
1000 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1001 |
1002 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1003 |
1004 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1005 |
1006 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1007 |
1008 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1009 |
1010 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1011 |
1012 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1013 |
1014 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1015 |
1016 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1017 |
1018 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1019 |
1020 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1021 | /The Wall.3.1GB.torrent'
1022 |
1023 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1024 | /The Wall.4.37GB.torrent'
1025 |
1026 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1027 | /血战太平洋.55.25GB.torrent'
1028 |
1029 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1030 | /血战太平洋.64.16GB.torrent'
1031 |
1032 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1033 |
1034 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1035 |
1036 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1037 |
1038 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1039 |
1040 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1041 |
1042 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1043 |
1044 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1045 |
1046 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1047 |
1048 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1049 |
1050 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1051 |
1052 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1053 |
1054 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1055 |
1056 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1057 |
1058 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1059 |
1060 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1061 |
1062 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1063 |
1064 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1065 | /The Wall.3.1GB.torrent'
1066 |
1067 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1068 | /The Wall.4.37GB.torrent'
1069 |
1070 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1071 | /血战太平洋.55.25GB.torrent'
1072 |
1073 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1074 | /血战太平洋.64.16GB.torrent'
1075 |
1076 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1077 |
1078 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1079 |
1080 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1081 |
1082 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1083 |
1084 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1085 |
1086 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1087 |
1088 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1089 |
1090 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1091 |
1092 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1093 |
1094 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1095 |
1096 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1097 |
1098 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1099 |
1100 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1101 |
1102 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1103 |
1104 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1105 |
1106 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1107 |
1108 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1109 | /The Wall.3.1GB.torrent'
1110 |
1111 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1112 | /The Wall.4.37GB.torrent'
1113 |
1114 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1115 | /血战太平洋.55.25GB.torrent'
1116 |
1117 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1118 | /血战太平洋.64.16GB.torrent'
1119 |
1120 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1121 |
1122 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1123 |
1124 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1125 |
1126 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1127 |
1128 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1129 |
1130 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1131 |
1132 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1133 |
1134 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1135 |
1136 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1137 |
1138 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1139 |
1140 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1141 |
1142 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1143 |
1144 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1145 |
1146 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1147 |
1148 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1149 |
1150 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1151 |
1152 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1153 | /The Wall.3.1GB.torrent'
1154 |
1155 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1156 | /The Wall.4.37GB.torrent'
1157 |
1158 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1159 | /血战太平洋.55.25GB.torrent'
1160 |
1161 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1162 | /血战太平洋.64.16GB.torrent'
1163 |
1164 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1165 |
1166 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1167 |
1168 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1169 |
1170 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1171 |
1172 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1173 |
1174 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1175 |
1176 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1177 |
1178 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1179 |
1180 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1181 |
1182 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1183 |
1184 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1185 |
1186 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1187 |
1188 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1189 |
1190 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1191 |
1192 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1193 |
1194 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1195 |
1196 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1197 | /The Wall.3.1GB.torrent'
1198 |
1199 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1200 | /The Wall.4.37GB.torrent'
1201 |
1202 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1203 | /血战太平洋.55.25GB.torrent'
1204 |
1205 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1206 | /血战太平洋.64.16GB.torrent'
1207 |
1208 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1209 |
1210 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1211 |
1212 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1213 |
1214 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1215 |
1216 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1217 |
1218 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1219 |
1220 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1221 |
1222 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1223 |
1224 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1225 |
1226 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1227 |
1228 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1229 |
1230 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1231 |
1232 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1233 |
1234 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1235 |
1236 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1237 |
1238 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1239 |
1240 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1241 | /The Wall.3.1GB.torrent'
1242 |
1243 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1244 | /The Wall.4.37GB.torrent'
1245 |
1246 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1247 | /血战太平洋.55.25GB.torrent'
1248 |
1249 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1250 | /血战太平洋.64.16GB.torrent'
1251 |
1252 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1253 |
1254 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1255 |
1256 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1257 |
1258 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1259 |
1260 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1261 |
1262 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1263 |
1264 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1265 |
1266 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1267 |
1268 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1269 |
1270 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1271 |
1272 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1273 |
1274 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1275 |
1276 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1277 |
1278 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1279 |
1280 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1281 |
1282 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1283 |
1284 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1285 | /The Wall.3.1GB.torrent'
1286 |
1287 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1288 | /The Wall.4.37GB.torrent'
1289 |
1290 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1291 | /血战太平洋.55.25GB.torrent'
1292 |
1293 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1294 | /血战太平洋.64.16GB.torrent'
1295 |
1296 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1297 |
1298 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1299 |
1300 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1301 |
1302 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1303 |
1304 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1305 |
1306 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1307 |
1308 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1309 |
1310 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1311 |
1312 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1313 |
1314 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1315 |
1316 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1317 |
1318 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1319 |
1320 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1321 |
1322 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1323 |
1324 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1325 |
1326 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1327 |
1328 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1329 | /The Wall.3.1GB.torrent'
1330 |
1331 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1332 | /The Wall.4.37GB.torrent'
1333 |
1334 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1335 | /血战太平洋.55.25GB.torrent'
1336 |
1337 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1338 | /血战太平洋.64.16GB.torrent'
1339 |
1340 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1341 |
1342 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1343 |
1344 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1345 |
1346 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1347 |
1348 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1349 |
1350 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1351 |
1352 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1353 |
1354 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1355 |
1356 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1357 |
1358 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1359 |
1360 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1361 |
1362 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1363 |
1364 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1365 |
1366 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1367 |
1368 | ('http://www.btba.com.cn/down/871446854841/1.html', '[DVDRip国语中字46集全]朱元璋/Founding Emperor Of Ming Dynasty.26.96GB.torrent'
1369 |
1370 | ('http://www.btba.com.cn/down/672441115923/1.html', '[DVDRip国语中字]地道战/Tunnel Warfare.1.3GB.torrent'
1371 |
1372 | ('http://www.btba.com.cn/down/511472027155/1.html', '[1080p]生死之墙/危墙狙击(台
1373 | /The Wall.3.1GB.torrent'
1374 |
1375 | ('http://www.btba.com.cn/down/511472027155/2.html', '[720p]生死之墙/危墙狙击(台
1376 | /The Wall.4.37GB.torrent'
1377 |
1378 | ('http://www.btba.com.cn/down/291624341167/1.html', '[1080p]太平洋战争/雷霆战海(港
1379 | /血战太平洋.55.25GB.torrent'
1380 |
1381 | ('http://www.btba.com.cn/down/291624341167/2.html', '[1080p简繁英三字]太平洋战争/雷霆战海(港
1382 | /血战太平洋.64.16GB.torrent'
1383 |
1384 | ('http://www.btba.com.cn/down/150458055115/1.html', '[720p中英双字]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.745.08MB.torrent'
1385 |
1386 | ('http://www.btba.com.cn/down/150458055115/2.html', '[E01.720p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.1.64GB.torrent'
1387 |
1388 | ('http://www.btba.com.cn/down/150458055115/3.html', '[E01.1080p]权力的游戏 第七季/冰与火之歌:权力的游戏/Game of Thrones Season 7.3.51GB.torrent'
1389 |
1390 | ('http://www.btba.com.cn/down/646941833970/1.html', '[720p]动物园长的夫人/The Zookeepers Wife.6.56GB.torrent'
1391 |
1392 | ('http://www.btba.com.cn/down/646941833970/2.html', '[1080p]动物园长的夫人/The Zookeepers Wife.9.85GB.torrent'
1393 |
1394 | ('http://www.btba.com.cn/down/882185401746/1.html', '[720p中英双字]一九零零/1900:新世纪/Novecento.9.01GB.torrent'
1395 |
1396 | ('http://www.btba.com.cn/down/145552114277/1.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.2.44GB.torrent'
1397 |
1398 | ('http://www.btba.com.cn/down/145552114277/2.html', '[720p国语中英双字]战狼/特种兵之战狼/Wolf Warriors.2.81GB.torrent'
1399 |
1400 | ('http://www.btba.com.cn/down/145552114277/3.html', '[720p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.3.91GB.torrent'
1401 |
1402 | ('http://www.btba.com.cn/down/145552114277/4.html', '[1080p国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.6.71GB.torrent'
1403 |
1404 | ('http://www.btba.com.cn/down/145552114277/5.html', '[1080p国语英简繁三字]战狼/特种兵之战狼/Wolf Warriors.8.36GB.torrent'
1405 |
1406 | ('http://www.btba.com.cn/down/145552114277/6.html', '[1080p中英双字]战狼/特种兵之战狼/Wolf Warriors.9.82GB.torrent'
1407 |
1408 | ('http://www.btba.com.cn/down/145552114277/7.html', '[1080p-3D国语简繁中字]战狼/特种兵之战狼/Wolf Warriors.30.49GB.torrent'
1409 |
1410 | ('http://www.btba.com.cn/down/457182441192/1.html', '[720p简繁中字]自己去看/炎628/过来瞧瞧/Come and See.4GB.torrent'
1411 |
1412 |
1413 | 进程已结束,退出代码0
1414 |
--------------------------------------------------------------------------------