diff --git a/pt_site/migrations/0040_site_identity.py b/pt_site/migrations/0040_site_identity.py new file mode 100644 index 0000000..2c185ad --- /dev/null +++ b/pt_site/migrations/0040_site_identity.py @@ -0,0 +1,20 @@ +# Generated by Django 4.1.2 on 2023-01-30 14:56 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("pt_site", "0039_site_publish_rule"), + ] + + operations = [ + migrations.AddField( + model_name="site", + name="identity", + field=models.IntegerField( + help_text="唯一值,自行适配站点的请填写的尽量大", null=True, verbose_name="认证ID" + ), + ), + ] diff --git a/pt_site/migrations/0041_alter_site_identity.py b/pt_site/migrations/0041_alter_site_identity.py new file mode 100644 index 0000000..2af02ce --- /dev/null +++ b/pt_site/migrations/0041_alter_site_identity.py @@ -0,0 +1,20 @@ +# Generated by Django 4.1.2 on 2023-01-30 14:59 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("pt_site", "0040_site_identity"), + ] + + operations = [ + migrations.AlterField( + model_name="site", + name="identity", + field=models.IntegerField( + help_text="唯一值,自行适配站点的请填写的尽量大", unique=True, verbose_name="认证ID" + ), + ), + ] diff --git a/pt_site/migrations/0042_remove_site_download_url_rule_remove_site_hash_rule_and_more.py b/pt_site/migrations/0042_remove_site_download_url_rule_remove_site_hash_rule_and_more.py new file mode 100644 index 0000000..6d8434e --- /dev/null +++ b/pt_site/migrations/0042_remove_site_download_url_rule_remove_site_hash_rule_and_more.py @@ -0,0 +1,138 @@ +# Generated by Django 4.1.2 on 2023-01-30 15:23 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ("pt_site", "0041_alter_site_identity"), + ] + + operations = [ + migrations.RemoveField(model_name="site", name="download_url_rule",), + migrations.RemoveField(model_name="site", name="hash_rule",), + migrations.RemoveField(model_name="site", name="peer_speed_rule",), + migrations.RemoveField(model_name="site", name="record_count_rule",), + migrations.RemoveField(model_name="site", name="viewfilelist_rule",), + migrations.RemoveField(model_name="site", name="viewpeerlist_rule",), + migrations.AddField( + model_name="site", + name="detail_area_rule", + field=models.CharField( + default='//h1/following::td/b[contains(text(),"地区")]/text()', + max_length=128, + verbose_name="详情页种子地区", + ), + ), + migrations.AddField( + model_name="site", + name="detail_category_rule", + field=models.CharField( + default='//td/b[contains(text(),"类型")]/following-sibling::text()[1]', + max_length=128, + verbose_name="详情页种子类型", + ), + ), + migrations.AddField( + model_name="site", + name="detail_count_files_rule", + field=models.CharField( + default='//td/b[contains(text(),"文件数")]/following-sibling::text()[1]', + max_length=128, + verbose_name="详情页文件数", + ), + ), + migrations.AddField( + model_name="site", + name="detail_douban_rule", + field=models.CharField( + default='//td/a[starts-with(@href,"https://movie.douban.com/subject/")][1]', + help_text="提取做种列表中文件大小计算总量", + max_length=128, + verbose_name="详情页豆瓣信息", + ), + ), + migrations.AddField( + model_name="site", + name="detail_download_url_rule", + field=models.CharField( + default='//a[@class="index" and contains(@href,"download.php")]/@href', + max_length=128, + verbose_name="详情页种子链接", + ), + ), + migrations.AddField( + model_name="site", + name="detail_free_expire_rule", + field=models.CharField( + default='//h1/b/font[contains(@class,"free")]/parent::b/following-sibling::b/span/@title', + max_length=128, + verbose_name="详情页促销时间", + ), + ), + migrations.AddField( + model_name="site", + name="detail_free_rule", + field=models.CharField( + default='//td//b[contains(text(),"大小")]/following::text()[1]', + max_length=128, + verbose_name="详情页促销标记", + ), + ), + migrations.AddField( + model_name="site", + name="detail_hash_rule", + field=models.CharField( + default='//td/b[contains(text(),"Hash")]/following-sibling::text()[1]', + max_length=128, + verbose_name="详情页种子HASH", + ), + ), + migrations.AddField( + model_name="site", + name="detail_size_rule", + field=models.CharField( + default='//td//b[contains(text(),"大小")]/following::text()[1]', + max_length=128, + verbose_name="详情页种子大小", + ), + ), + migrations.AddField( + model_name="site", + name="detail_subtitle_rule", + field=models.CharField( + default='//td[contains(text(),"副标题")]/following-sibling::td/text()[1]', + max_length=128, + verbose_name="详情页种子副标题", + ), + ), + migrations.AddField( + model_name="site", + name="detail_title_rule", + field=models.CharField( + default="//h1/text()[1]", max_length=128, verbose_name="详情页种子标题" + ), + ), + migrations.AddField( + model_name="site", + name="detail_year_publish_rule", + field=models.CharField( + default='year_current_publish: //td/b[contains(text(),"发行版年份")]/text()', + help_text="提取做种列表中文件大小计算总量", + max_length=128, + verbose_name="详情页豆瓣信息", + ), + ), + migrations.AlterField( + model_name="userlevelrule", + name="site", + field=models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + to="pt_site.site", + to_field="identity", + verbose_name="站 点", + ), + ), + ] diff --git a/pt_site/migrations/0043_userlevelrule_leeches_userlevelrule_seeding_delta_and_more.py b/pt_site/migrations/0043_userlevelrule_leeches_userlevelrule_seeding_delta_and_more.py new file mode 100644 index 0000000..c891354 --- /dev/null +++ b/pt_site/migrations/0043_userlevelrule_leeches_userlevelrule_seeding_delta_and_more.py @@ -0,0 +1,36 @@ +# Generated by Django 4.1.2 on 2023-01-30 15:28 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ( + "pt_site", + "0042_remove_site_download_url_rule_remove_site_hash_rule_and_more", + ), + ] + + operations = [ + migrations.AddField( + model_name="userlevelrule", + name="leeches", + field=models.IntegerField(default=0, help_text="完成种子数", verbose_name="吸血数"), + ), + migrations.AddField( + model_name="userlevelrule", + name="seeding_delta", + field=models.FloatField(default=0, help_text="累计做种时间", verbose_name="做种时间"), + ), + migrations.AlterField( + model_name="userlevelrule", + name="bonus", + field=models.FloatField(default=0, verbose_name="魔 力"), + ), + migrations.AlterField( + model_name="userlevelrule", + name="torrents", + field=models.IntegerField(default=0, help_text="发布种子数", verbose_name="发 种"), + ), + ] diff --git a/pt_site/models.py b/pt_site/models.py index af14e84..84e12bc 100644 --- a/pt_site/models.py +++ b/pt_site/models.py @@ -10,6 +10,7 @@ from ptools.base import BaseEntity, DownloaderCategory # 支持的站点 class Site(BaseEntity): # 站点设置 + identity = models.IntegerField(verbose_name='认证ID', unique=True, help_text='唯一值,自行适配站点的请填写的尽量大') url = models.URLField(verbose_name='站点网址', default='', help_text='请保留网址结尾的"/"', unique=True) name = models.CharField(max_length=32, verbose_name='站点名称') nickname = models.CharField(max_length=16, verbose_name='简称', default='', help_text='英文,用于刷流') @@ -108,10 +109,6 @@ class Site(BaseEntity): verbose_name='主页下载链接', default='.//td/a[contains(@href,"download.php?id=")]/@href', max_length=128) - download_url_rule = models.CharField( - verbose_name='详情页种子链接', - default='.//a[contains(@href,"download.php?id=") and contains(@href,"passkey")]/@href', - max_length=128) size_rule = models.CharField(verbose_name='文件大小', default='.//td[5]/text()', max_length=128) @@ -144,18 +141,58 @@ class Site(BaseEntity): verbose_name='完成人数', default='.//a[contains(@href,"viewsnatches")]//text()', max_length=128) - viewfilelist_rule = models.CharField( - verbose_name='解析文件结构', - default='.//td/text()', + detail_title_rule = models.CharField( + verbose_name='详情页种子标题', + default='//h1/text()[1]', max_length=128) - viewpeerlist_rule = models.CharField( - verbose_name='平均下载进度', - default='.//tr/td[9]/nobr/text()', + detail_subtitle_rule = models.CharField( + verbose_name='详情页种子副标题', + default='//td[contains(text(),"副标题")]/following-sibling::td/text()[1]', max_length=128) - peer_speed_rule = models.CharField( - verbose_name='平均下载速度', - default='.//tr/td[7]/nobr/text()', + detail_download_url_rule = models.CharField( + verbose_name='详情页种子链接', + default='//a[@class="index" and contains(@href,"download.php")]/@href', max_length=128) + detail_size_rule = models.CharField( + verbose_name='详情页种子大小', + default='//td//b[contains(text(),"大小")]/following::text()[1]', + max_length=128) + detail_category_rule = models.CharField( + verbose_name='详情页种子类型', + default='//td/b[contains(text(),"类型")]/following-sibling::text()[1]', + max_length=128) + detail_area_rule = models.CharField( + verbose_name='详情页种子地区', + default='//h1/following::td/b[contains(text(),"地区")]/text()', + max_length=128) + detail_count_files_rule = models.CharField( + verbose_name='详情页文件数', + default='//td/b[contains(text(),"文件数")]/following-sibling::text()[1]', + max_length=128) + # HASH RULE + detail_hash_rule = models.CharField( + verbose_name='详情页种子HASH', + default='//td/b[contains(text(),"Hash")]/following-sibling::text()[1]', + max_length=128) + detail_free_rule = models.CharField( + verbose_name='详情页促销标记', + default='//td//b[contains(text(),"大小")]/following::text()[1]', + max_length=128) + detail_free_expire_rule = models.CharField( + verbose_name='详情页促销时间', + default='//h1/b/font[contains(@class,"free")]/parent::b/following-sibling::b/span/@title', + max_length=128) + detail_douban_rule = models.CharField( + verbose_name='详情页豆瓣信息', + help_text='提取做种列表中文件大小计算总量', + default='//td/a[starts-with(@href,"https://movie.douban.com/subject/")][1]', + max_length=128) + detail_year_publish_rule = models.CharField( + verbose_name='详情页豆瓣信息', + help_text='提取做种列表中文件大小计算总量', + default='year_current_publish: //td/b[contains(text(),"发行版年份")]/text()', + max_length=128) + remark = models.TextField(verbose_name='备注', default='', null=True, blank=True) # 状态信息XPath invitation_rule = models.CharField( @@ -226,11 +263,6 @@ class Site(BaseEntity): default='//img[@class="arrowup"]/following-sibling::text()[1]', max_length=128) - record_count_rule = models.CharField(verbose_name='做种大小列表', - help_text='提取做种列表中文件大小计算总量', - default='.//td[3]/text()', - max_length=128) - seed_vol_rule = models.CharField(verbose_name='做种大小', default='//tr/td[3]', help_text='需对数据做处理', @@ -259,10 +291,6 @@ class Site(BaseEntity): default='//td/b/a/font[contains(text(),"全站") and contains(text(),"Free")]/text()', help_text='站免信息', max_length=128) - # HASH RULE - hash_rule = models.CharField(verbose_name='种子HASH', - default='//td/b[contains(text(),"Hash")]/following::text()[1]', - max_length=128) class Meta: verbose_name = '站点信息' @@ -274,16 +302,18 @@ class Site(BaseEntity): class UserLevelRule(BaseEntity): - site = models.ForeignKey(verbose_name='站 点', to=Site, to_field='url', on_delete=models.CASCADE) + site = models.ForeignKey(verbose_name='站 点', to=Site, to_field='identity', on_delete=models.CASCADE) level_id = models.IntegerField(verbose_name='等级id', default=1) level = models.CharField(verbose_name='等 级', default='User', max_length=24, help_text='请去除空格') days = models.IntegerField(verbose_name='时 间', default=0, help_text='原样输入,单位:周') uploaded = models.CharField(verbose_name='上 传', default=0, help_text='原样输入,例:50GB,1.5TB', max_length=12) downloaded = models.CharField(verbose_name='下 载', default=0, help_text='原样输入,例:50GB,1.5TB', max_length=12) - bonus = models.IntegerField(verbose_name='魔 力', default=0) + bonus = models.FloatField(verbose_name='魔 力', default=0) score = models.IntegerField(verbose_name='积 分', default=0) ratio = models.FloatField(verbose_name='分享率', default=0) - torrents = models.IntegerField(verbose_name='发 种', default=0) + torrents = models.IntegerField(verbose_name='发 种', help_text='发布种子数', default=0) + leeches = models.IntegerField(verbose_name='吸血数', help_text='完成种子数', default=0) + seeding_delta = models.FloatField(verbose_name='做种时间', help_text='累计做种时间', default=0) rights = models.TextField(verbose_name='权 利', max_length=256, help_text='当前等级所享有的权利与义务') diff --git a/pt_site_site.json b/pt_site_site.json index ceef521..4586937 100644 --- a/pt_site_site.json +++ b/pt_site_site.json @@ -2,7 +2,7 @@ { "id": 1, "created_at": "2022-07-17 10:22:03.474000", - "updated_at": "2023-01-25 08:42:33.681906", + "updated_at": "2023-01-30 15:24:44.529785", "name": "阿童木", "url": "https://hdatmos.club/", "logo": "https://hdatmos.club/favicon.ico", @@ -39,7 +39,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -48,9 +47,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -65,10 +61,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[10]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -83,12 +77,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 1, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 2, "created_at": "2022-07-17 10:24:21.376000", - "updated_at": "2023-01-25 08:42:33.692613", + "updated_at": "2023-01-30 15:24:44.535451", "name": "猪猪网", "url": "https://piggo.me/", "logo": "https://piggo.me/favicon.ico", @@ -125,7 +132,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//tr/td[1]/a/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download.php?id=\") ]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?\") and contains(text(),\"右键查看\") ]/@href", "size_rule": ".//td[5]//text()", "hr_rule": ".//img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -134,9 +140,6 @@ "seeders_rule": ".//b/a[contains(@href,\"dllist=1#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"dllist=1#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches.php?id=\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[8]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -151,10 +154,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "//tr/td[4]", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@id=\"messages1\"]/font/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -169,12 +170,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 2, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 5, "created_at": "2022-07-17 10:27:30.380000", - "updated_at": "2023-01-25 08:42:33.702269", + "updated_at": "2023-01-30 15:24:44.538866", "name": "1PT", "url": "https://1ptba.com/", "logo": "https://1ptba.com/favicon.ico", @@ -211,7 +225,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -220,9 +233,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -237,10 +247,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -255,12 +263,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 3, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 8, "created_at": "2022-07-20 10:05:03.493000", - "updated_at": "2023-01-25 08:42:33.709210", + "updated_at": "2023-01-30 15:24:44.542207", "name": "CarPT", "url": "https://carpt.net/", "logo": "https://carpt.net/favicon.ico", @@ -297,7 +318,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -306,9 +326,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -323,10 +340,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -341,12 +356,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 4, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 9, "created_at": "2022-07-20 10:06:16.029000", - "updated_at": "2023-01-25 08:42:33.718432", + "updated_at": "2023-01-30 15:24:44.545398", "name": "HDArea", "url": "https://www.hdarea.co/", "logo": "https://www.hdarea.co/favicon.ico", @@ -383,7 +411,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//td[contains(text(),\"download.php?id=\") and contains(text(),\"passkey\")]/text()", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -392,9 +419,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -409,10 +433,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -427,12 +449,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 5, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 10, "created_at": "2022-07-20 10:07:13.505000", - "updated_at": "2023-01-25 08:42:33.725493", + "updated_at": "2023-01-30 15:24:44.548864", "name": "红豆饭", "url": "https://hdfans.org/", "logo": "https://hdfans.org/favicon.ico", @@ -469,7 +504,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -478,9 +512,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -495,10 +526,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -513,12 +542,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 6, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 11, "created_at": "2022-07-20 10:08:12.726000", - "updated_at": "2023-01-25 08:42:33.735361", + "updated_at": "2023-01-30 15:24:44.552222", "name": "天空", "url": "https://hdsky.me/", "logo": "https://hdsky.me/favicon.ico", @@ -555,7 +597,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td[@class=\"embedded\"][2]/form[contains(@action,\"download\")]/@action", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -564,9 +605,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -581,10 +619,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -599,12 +635,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 7, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 12, "created_at": "2022-07-20 10:09:18.723000", - "updated_at": "2023-01-25 08:42:33.741708", + "updated_at": "2023-01-30 15:24:44.555594", "name": "时光", "url": "https://hdtime.org/", "logo": "https://hdtime.org/favicon.ico", @@ -641,7 +690,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -650,9 +698,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -667,10 +712,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -685,12 +728,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 8, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 13, "created_at": "2022-07-20 10:09:59.938000", - "updated_at": "2023-01-25 08:42:33.750356", + "updated_at": "2023-01-30 15:24:44.559182", "name": "Zone", "url": "https://hdzone.me/", "logo": "https://hdzone.me/favicon.ico", @@ -727,7 +783,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -736,9 +791,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -753,10 +805,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -771,12 +821,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 9, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 14, "created_at": "2022-07-20 10:11:12.180000", - "updated_at": "2023-01-25 08:42:33.756514", + "updated_at": "2023-01-30 15:24:44.562627", "name": "冬樱", "url": "https://wintersakura.net/", "logo": "https://wintersakura.net/favicon.ico", @@ -813,7 +876,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -822,9 +884,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -839,10 +898,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -857,12 +914,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 10, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 15, "created_at": "2022-07-20 10:12:13.107000", - "updated_at": "2023-01-25 08:42:33.765133", + "updated_at": "2023-01-30 15:24:44.566148", "name": "蚂蚁", "url": "http://hdmayi.com/", "logo": "http://hdmayi.com/favicon.ico", @@ -899,7 +969,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -908,9 +977,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -925,10 +991,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -943,12 +1007,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 11, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 16, "created_at": "2022-07-20 10:13:15.407000", - "updated_at": "2023-01-25 08:42:33.785839", + "updated_at": "2023-01-30 15:24:44.569261", "name": "农场", "url": "https://pt.0ff.cc/", "logo": "https://pt.0ff.cc/favicon.ico", @@ -985,7 +1062,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -994,9 +1070,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1011,10 +1084,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1029,12 +1100,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 12, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 17, "created_at": "2022-07-20 10:15:59.584000", - "updated_at": "2023-01-25 08:42:33.799552", + "updated_at": "2023-01-30 15:24:44.572333", "name": "铂金学院", "url": "https://ptchina.org/", "logo": "https://ptchina.org/favicon.ico", @@ -1071,7 +1155,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1080,9 +1163,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1097,10 +1177,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1115,12 +1193,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 13, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 18, "created_at": "2022-07-20 10:58:58.928000", - "updated_at": "2023-01-25 08:42:33.806094", + "updated_at": "2023-01-30 15:24:44.575964", "name": "马杀鸡", "url": "https://pt.msg.vg/", "logo": "https://pt.msg.vg/favicon.ico", @@ -1157,7 +1248,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1166,9 +1256,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1183,10 +1270,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1201,12 +1286,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 14, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 19, "created_at": "2022-07-20 11:03:57.583000", - "updated_at": "2023-01-25 08:42:33.815015", + "updated_at": "2023-01-30 15:24:44.579089", "name": "时间", "url": "https://www.pttime.org/", "logo": "https://www.pttime.org/favicon.ico", @@ -1243,7 +1341,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[6]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//font[contains(@class,\"free\")]/text()", @@ -1252,9 +1349,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"剩余邀请量\")]/following::a[contains(@href,\"invite.php\")][1]//text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1269,10 +1363,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//i[@title=\"当前下载\"]/following-sibling::text()[1]", "seed_rule": "//i[@title=\"当前做种\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//b[contains(text(),\"资源总大小:\")]/following-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"秘钥\")]/following-sibling::td[1]/span/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1287,12 +1379,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 15, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 20, "created_at": "2022-07-20 11:06:11.901000", - "updated_at": "2023-01-25 08:42:33.822523", + "updated_at": "2023-01-30 15:24:44.582634", "name": "欧申", "url": "http://www.oshen.win/", "logo": "http://www.oshen.win/favicon.ico", @@ -1329,7 +1434,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1338,9 +1442,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1355,10 +1456,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1373,12 +1472,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 16, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 21, "created_at": "2022-07-20 11:12:51.331000", - "updated_at": "2023-01-25 08:42:33.831295", + "updated_at": "2023-01-30 15:24:44.585843", "name": "海棠", "url": "https://www.htpt.cc/", "logo": "https://www.htpt.cc/favicon.ico", @@ -1415,7 +1527,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1424,9 +1535,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1441,10 +1549,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//td[contains(text(),\"做种统计\")]/following-sibling::td/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1459,12 +1565,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 17, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 22, "created_at": "2022-07-20 11:17:25.992000", - "updated_at": "2023-01-25 08:42:33.837759", + "updated_at": "2023-01-30 15:24:44.589276", "name": "烧包", "url": "https://ptsbao.club/", "logo": "https://ptsbao.club/favicon.ico", @@ -1501,7 +1620,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[2]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": "./td[@id=\"torrents_td\"][6]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1510,9 +1628,6 @@ "seeders_rule": ".//td[8]/b/a/text()", "leechers_rule": ".//td[9]/b/a/text()", "completers_rule": ".//td[10]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1527,10 +1642,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"downloading\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"uploading\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[contains(@href, \"messages.php\")]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1545,12 +1658,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 18, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 23, "created_at": "2022-07-20 11:25:55.869000", - "updated_at": "2023-01-25 08:42:33.844520", + "updated_at": "2023-01-30 15:24:44.592445", "name": "百川", "url": "https://www.hitpt.com/", "logo": "https://www.hitpt.com/favicon.ico", @@ -1587,7 +1713,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1596,9 +1721,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -1613,10 +1735,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1631,12 +1751,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 19, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 24, "created_at": "2022-07-20 11:27:42.866000", - "updated_at": "2023-01-25 08:42:33.854512", + "updated_at": "2023-01-30 15:24:44.595691", "name": "聆音", "url": "https://pt.soulvoice.club/", "logo": "https://pt.soulvoice.club/favicon.ico", @@ -1673,7 +1806,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1682,9 +1814,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1699,10 +1828,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1717,12 +1844,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 20, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 25, "created_at": "2022-07-20 11:28:54.234000", - "updated_at": "2023-01-25 08:42:33.863819", + "updated_at": "2023-01-30 15:24:44.598904", "name": "备胎", "url": "https://www.beitai.pt/", "logo": "https://www.beitai.pt/favicon.ico", @@ -1759,7 +1899,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1768,9 +1907,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1785,10 +1921,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1803,12 +1937,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 21, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 26, "created_at": "2022-07-20 23:48:14.437000", - "updated_at": "2023-01-25 08:42:33.871613", + "updated_at": "2023-01-30 15:24:44.602176", "name": "观众", "url": "https://audiences.me/", "logo": "https://audiences.me/favicon.ico", @@ -1845,7 +1992,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1854,9 +2000,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1871,10 +2014,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//br/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/span/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1889,12 +2030,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 22, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 28, "created_at": "2022-07-20 23:51:03.848000", - "updated_at": "2023-01-25 08:42:33.879820", + "updated_at": "2023-01-30 15:24:44.605467", "name": "丐帮", "url": "https://gainbound.net/", "logo": "https://gainbound.net/favicon.ico", @@ -1931,7 +2085,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -1940,9 +2093,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -1957,10 +2107,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -1975,12 +2123,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 23, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 29, "created_at": "2022-07-20 23:51:54.709000", - "updated_at": "2023-01-25 08:42:33.888199", + "updated_at": "2023-01-30 15:24:44.608687", "name": "海胆", "url": "https://www.haidan.video/", "logo": "https://www.haidan.video/public/pic/favicon.ico", @@ -2017,7 +2178,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2026,9 +2186,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "因种子的分组机构原因,暂未支持", "invitation_rule": "//td[text()=\"邀请\"]/following-sibling::td/text()", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2043,10 +2200,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2061,12 +2216,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 24, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 30, "created_at": "2022-07-20 23:52:34.568000", - "updated_at": "2023-01-25 08:42:33.904636", + "updated_at": "2023-01-30 15:24:44.612058", "name": "HD杜比", "url": "https://www.hddolby.com/", "logo": "https://gitee.com/ngfchl/icons/raw/master/pt_site/hddolby.ico", @@ -2103,7 +2271,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2112,9 +2279,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2129,10 +2293,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//br/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2147,12 +2309,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 25, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 31, "created_at": "2022-07-20 23:53:30.271000", - "updated_at": "2023-01-25 08:42:33.916661", + "updated_at": "2023-01-30 15:24:44.615248", "name": "海带", "url": "https://www.hd.ai/", "logo": "https://www.hd.ai/favicon.png", @@ -2189,7 +2364,6 @@ "category_rule": "//td[3]/div/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": "//td[@data-field=\"size\"]/@data-content", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2198,9 +2372,6 @@ "seeders_rule": ".//td[@data-field=\"seeders\"]/@data-content", "leechers_rule": ".//td[@data-field=\"leechers\"]/@data-content", "completers_rule": ".//td[@data-field=\"times_completed\"]/@data-content", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2215,10 +2386,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2233,12 +2402,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 26, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 32, "created_at": "2022-07-20 23:55:26.251000", - "updated_at": "2023-01-25 08:42:33.931223", + "updated_at": "2023-01-30 15:24:44.618532", "name": "MTeam", "url": "https://kp.m-team.cc/", "logo": "https://kp.m-team.cc/favicon.ico", @@ -2275,7 +2457,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2284,9 +2465,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2301,10 +2479,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2319,12 +2495,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 27, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 33, "created_at": "2022-07-20 23:56:40.615000", - "updated_at": "2023-01-25 08:42:33.938491", + "updated_at": "2023-01-30 15:24:44.621675", "name": "芒果", "url": "https://www.3wmg.com/", "logo": "https://www.3wmg.com/favicon.ico", @@ -2361,7 +2550,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?\") and contains(text(),\"右键查看\")]/@href", "size_rule": ".//td[4]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2370,9 +2558,6 @@ "seeders_rule": ".//a[contains(@href,\"dllist=1#seeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"dllist=1#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches.php?id=\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2387,10 +2572,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\" and @alt=\"Torrents leeching\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\" and @alt=\"Torrents seeding\"][1]/following-sibling::text()[1]", - "record_count_rule": "//tr/td[4]", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2405,12 +2588,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 28, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 34, "created_at": "2022-07-23 19:05:57.166000", - "updated_at": "2023-01-27 20:58:31.210268", + "updated_at": "2023-01-30 15:24:44.625102", "name": "海豹GPW", "url": "https://greatposterwall.com/", "logo": "https://greatposterwall.com/favicon.ico", @@ -2447,7 +2643,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"]/a/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2456,9 +2651,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "因站点架构原因,暂未支持", "invitation_rule": "//span[text()=\"邀请数量: \"]/following-sibling::text()[1]", "time_join_rule": "//li[@ id=\"join-date-value\"]/@data-value", @@ -2473,10 +2665,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//table[@id=\"torrent_table\"]/tbody/tr", "seed_rule": "//td[@id=\"seeding-count-value\"]/@data-value", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//td[@id=\"seeding-size-value\"]/@data-value", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//div[@class=\"HeaderProfile\"]/a[contains(@href,\"user.php?id=\")]/@href", @@ -2491,12 +2681,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 29, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 35, "created_at": "2022-07-23 19:10:24.853000", - "updated_at": "2023-01-28 21:38:49.177371", + "updated_at": "2023-01-30 15:24:44.628178", "name": "白兔hares", "url": "https://club.hares.top/", "logo": "https://club.hares.top/favicon.ico", @@ -2533,7 +2736,6 @@ "category_rule": ".//td[1]/a/img/@title", "poster_rule": ".//td[2]/div[1]/div[1]/div[1]/a/@rel", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2542,9 +2744,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//li/i[contains(@title,\"邀请\")]/following::text()[1]", "time_join_rule": "//td[contains(text(),\"加入日期\")]/following-sibling::td[1]/span/@title", @@ -2559,10 +2758,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//li/i[contains(@title,\"下载中\")]/following::text()[1]", "seed_rule": "//li/i[contains(@title,\"做种中\")]/following::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//span/a[contains(text(),\"UID\")]/@href", @@ -2577,12 +2774,25 @@ "notice_title": "//div[@class=\"home_Announcement\"]/span[1]", "notice_content": "//div[@class=\"home_Announcement\"]/span/following-sibling::div/div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 30, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 36, "created_at": "2022-07-27 12:59:12.234000", - "updated_at": "2023-01-25 08:42:33.960391", + "updated_at": "2023-01-30 15:24:44.631674", "name": "老师", "url": "https://www.nicept.net/", "logo": "https://www.nicept.net/favicon.ico", @@ -2619,7 +2829,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"]/a/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2628,9 +2837,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2645,10 +2851,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2663,12 +2867,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 31, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 38, "created_at": "2022-08-02 10:14:26.854000", - "updated_at": "2023-01-25 08:42:33.968844", + "updated_at": "2023-01-30 15:24:44.634722", "name": "明教", "url": "https://hdpt.xyz/", "logo": "https://hdpt.xyz/favicon.ico", @@ -2705,7 +2922,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2714,9 +2930,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2731,10 +2944,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[10]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2749,12 +2960,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 32, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 39, "created_at": "2022-08-12 23:29:07.033000", - "updated_at": "2023-01-25 08:42:33.974728", + "updated_at": "2023-01-30 15:24:44.638164", "name": "铂金家", "url": "https://pthome.net/", "logo": "https://pthome.net/favicon.ico", @@ -2791,7 +3015,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?\") and contains(text(),\"passkey\")]/@href", "size_rule": ".//td[5]//text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2800,9 +3023,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//td/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2817,10 +3037,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td[contains(text(),\"Hash\")]/b/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -2835,12 +3053,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 33, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 40, "created_at": "2022-08-14 09:14:51.194000", - "updated_at": "2023-01-29 10:52:11.886899", + "updated_at": "2023-01-30 15:24:44.641284", "name": "ipt", "url": "https://iptorrents.com/", "logo": "https://iptorrents.com/favicon.ico", @@ -2877,7 +3108,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": "//td/a[contains(@href,\"downhash\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2886,9 +3116,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[@href=\"/invite.php\" and @ class=\"tTipWrap\"]/text()", "time_join_rule": "//th[contains(text(),\"Join date\")]/following-sibling::td/text()[1]", @@ -2903,10 +3130,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//i[@class=\"fa fa-angle-double-down ico red\"]/following-sibling::text()[1]", "seed_rule": "//i[@class=\"fa fa-angle-double-up ico grn\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[6]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//th[contains(text(),\"Passkey\")]/following-sibling::td/text()", "my_uid_rule": "//a[@class=\"tTipWrap\" and contains(@href,\"/peers?u=\")]/@href", @@ -2921,12 +3146,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 34, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 41, "created_at": "2022-08-18 00:39:11.082000", - "updated_at": "2023-01-25 08:42:33.989028", + "updated_at": "2023-01-30 15:24:44.644652", "name": "梓喵", "url": "https://azusa.wiki/", "logo": "https://azusa.wiki/favicon.ico", @@ -2963,7 +3201,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -2972,9 +3209,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -2989,10 +3223,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//table/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//span/span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3007,12 +3239,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 35, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 42, "created_at": "2022-08-18 00:46:55.688000", - "updated_at": "2023-01-25 08:42:33.995958", + "updated_at": "2023-01-30 15:24:44.647867", "name": "HD城市", "url": "https://hdcity.city/", "logo": "https://hdcity.city/favicon.ico", @@ -3049,7 +3294,6 @@ "category_rule": "./div/div[@class=\"trti\"]/a/span/text()", "poster_rule": "./div[@class=\"trm\"]/div/div/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//div[@class=\"trl\"]/i/following-sibling::text()[1]", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3058,9 +3302,6 @@ "seeders_rule": ".//a[contains(@href,\"dllist=1#seeders\")]/font/text()", "leechers_rule": ".//a[contains(@href,\"dllist=1#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches?id=\")]/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[@href=\"invite\"]/text()[1]", "time_join_rule": "//b[text()=\"加入日期\"]/following-sibling::text()[1]", @@ -3075,10 +3316,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//a[@href=\"userdetails\"]/span[@title=\"当前下载\"]/text()[1]", "seed_rule": "//a[@href=\"userdetails\"]/span[@title=\"当前做种\"]/text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//li/a/i[@id=\"rmsg\"]/following::text()[1]", - "hash_rule": "//b[text()=\"Hash 值:\"]/following-sibling::text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//b[text()=\"ID\"]/following-sibling::text()[1]", @@ -3093,12 +3332,25 @@ "notice_title": "//div[@class=\"block\"][1]/div[@class=\"blocktitle\"]/a", "notice_content": "//div[@class=\"block\"][1]/div[@class=\"blocktitle\"]/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 36, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 43, "created_at": "2022-08-19 23:20:30.164000", - "updated_at": "2023-01-25 08:42:34.004122", + "updated_at": "2023-01-30 15:24:44.651154", "name": "HDVIDEO", "url": "https://hdvideo.one/", "logo": "https://hdvideo.one/favicon.ico", @@ -3135,7 +3387,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3144,9 +3395,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3161,10 +3409,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3179,12 +3425,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 37, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 44, "created_at": "2022-08-23 16:41:38.669000", - "updated_at": "2023-01-25 08:42:34.010373", + "updated_at": "2023-01-30 15:24:44.654270", "name": "月月Frds", "url": "https://pt.keepfrds.com/", "logo": "https://pt.keepfrds.com/favicon.ico", @@ -3221,7 +3480,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//div/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//input[@id=\"download_link\"]/@value", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3230,9 +3488,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3247,10 +3502,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "//tr/td[3]", "seed_vol_rule": "//td[contains(text(),\"当前做种\")]/following-sibling::td/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/b/span/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3265,12 +3518,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 38, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 45, "created_at": "2022-08-26 20:52:18.452000", - "updated_at": "2023-01-25 08:42:34.019470", + "updated_at": "2023-01-30 15:24:44.657636", "name": "U2", "url": "https://u2.dmhy.org/", "logo": "https://u2.dmhy.org/favicon.ico", @@ -3307,7 +3573,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3316,9 +3581,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/time/text()", @@ -3333,10 +3595,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//a[contains(@href,\"#seedlist\")]//text()", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//table/preceding-sibling::br/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/span/@data-content", "my_uid_rule": "//span/span/a[contains(@href, \"userdetails.php?id=\")]/@href", @@ -3351,12 +3611,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 39, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 46, "created_at": "2022-08-26 20:53:50.259000", - "updated_at": "2023-01-27 20:54:39.173318", + "updated_at": "2023-01-30 15:24:44.661129", "name": "TTG", "url": "https://totheglory.im/", "logo": "https://totheglory.im/favicon.ico", @@ -3393,7 +3666,6 @@ "category_rule": ".//img[contains(@src,\"cate\")]/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//img[contains(@class,\"dl_img\")]/parent::a/@href", - "download_url_rule": "//a[contains(text(),\"点击复制\")]/@href", "size_rule": ".//td[7]/text()", "hr_rule": ".//img[@title=\"Hit and Run\"]", "sale_rule": ".//img[contains(@src,\"free\")]/@alt", @@ -3402,9 +3674,6 @@ "seeders_rule": ".//a[contains(@href,\"&toseeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"&todlers\")]//text()", "completers_rule": ".//td[8]/text()[1]", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/span/text()[1]", "time_join_rule": "//td[contains(text(),\"注册日期\")]/following-sibling::td[1]/text()", @@ -3419,10 +3688,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[contains(@title,\"下载中\")]/following-sibling::font[1]/span/text()[1]", "seed_rule": "//img[contains(@title,\"做种中\")]/following-sibling::font[1]/span/text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//p/u[1]/text()", "mailbox_rule": "//a[contains(@href,\"messages.php\")]/font[contains(text(),\"个\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"Passkey\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@href,\"/userdetails.php?id=\")]/@href", @@ -3437,12 +3704,25 @@ "notice_title": "//td[@class=\"text\"]/ul/li", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 40, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 47, "created_at": "2022-08-26 20:54:35.357000", - "updated_at": "2023-01-25 08:42:34.050901", + "updated_at": "2023-01-30 15:24:44.664409", "name": "蝶粉", "url": "https://discfan.net/", "logo": "https://discfan.net/favicon.ico", @@ -3479,7 +3759,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3488,9 +3767,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3505,10 +3781,8 @@ "my_hr_rule": "//td[contains(text(),\"H&R\")]/following-sibling::td//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3523,12 +3797,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 41, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 48, "created_at": "2022-08-26 20:55:42.110000", - "updated_at": "2023-01-25 08:42:34.057828", + "updated_at": "2023-01-30 15:24:44.667817", "name": "joyhd", "url": "https://www.joyhd.net/", "logo": "https://www.joyhd.net/favicon.ico", @@ -3565,7 +3852,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3574,9 +3860,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3591,10 +3874,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3609,12 +3890,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 42, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 49, "created_at": "2022-08-27 17:32:01.405000", - "updated_at": "2023-01-25 08:42:34.066908", + "updated_at": "2023-01-30 15:24:44.671244", "name": "彩虹岛", "url": "https://chdbits.co/", "logo": "https://chdbits.co/favicon.ico", @@ -3651,7 +3945,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3660,9 +3953,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3677,10 +3967,8 @@ "my_hr_rule": "//a[contains(@href, \"hnr.php\")]/following-sibling::text()[1]", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3695,12 +3983,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 43, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 50, "created_at": "2022-08-27 17:36:00.453000", - "updated_at": "2023-01-25 08:42:34.073438", + "updated_at": "2023-01-30 15:24:44.674802", "name": "好多油", "url": "https://pt.hdupt.com/", "logo": "https://pt.hdupt.com/favicon.ico", @@ -3737,7 +4038,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3746,9 +4046,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3763,10 +4060,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3781,12 +4076,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 44, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 51, "created_at": "2022-08-27 17:43:57.903000", - "updated_at": "2023-01-25 08:42:34.080745", + "updated_at": "2023-01-30 15:24:44.677934", "name": "我堡", "url": "https://ourbits.club/", "logo": "https://ourbits.club/favicon.ico", @@ -3823,7 +4131,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3832,9 +4139,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3849,10 +4153,8 @@ "my_hr_rule": "//font[contains(text(),\"H&R:\")]/following-sibling::text()[1]", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/span[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/span[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3867,12 +4169,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 45, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 52, "created_at": "2022-08-27 18:16:09.224000", - "updated_at": "2023-01-25 08:42:34.087800", + "updated_at": "2023-01-30 15:24:44.681366", "name": "家园", "url": "https://hdhome.org/", "logo": "https://hdhome.org/favicon.ico", @@ -3909,7 +4224,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -3918,9 +4232,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -3935,10 +4246,8 @@ "my_hr_rule": "//a[contains(@href, \"hr.php\")]/font/following-sibling::text()[1]", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -3953,12 +4262,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 46, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 53, "created_at": "2022-08-27 18:18:44.023000", - "updated_at": "2023-01-27 20:56:53.247644", + "updated_at": "2023-01-30 15:24:44.684471", "name": "不可说", "url": "https://springsunday.net/", "logo": "https://springsunday.net/favicon.ico", @@ -3995,7 +4317,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4004,9 +4325,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//div[@id=\"info_block\"]//a[contains(@href,\"invite.php?id=\")]/text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4021,10 +4339,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//div[@id=\"info_block\"]//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//div[@id=\"info_block\"]//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/text()[2]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//div[@id=\"info_block\"]//a[contains(@href,\"userdetails.php?id=\")]/@href", @@ -4039,12 +4355,25 @@ "notice_title": "//td[@class=\"text\"]/div/div/a", "notice_content": "//td[@class=\"text\"]/div/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 47, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 54, "created_at": "2022-08-27 18:24:32.917000", - "updated_at": "2023-01-25 08:42:34.102651", + "updated_at": "2023-01-30 15:24:44.688015", "name": "OpenCD", "url": "https://www.open.cd/", "logo": "https://www.open.cd/favicon.ico", @@ -4081,7 +4410,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4090,9 +4418,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//font[@class=\"color_invite\"]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4107,10 +4432,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4125,12 +4448,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 48, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 55, "created_at": "2022-08-27 21:57:23.449000", - "updated_at": "2023-01-25 08:42:34.108554", + "updated_at": "2023-01-30 15:24:44.691468", "name": "这是猫站", "url": "https://pterclub.com/", "logo": "https://pterclub.com/favicon.ico", @@ -4167,7 +4503,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//td/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": "//td[contains(text(),\"种子链接\")]/following::a[contains(@href,\"download.php?\") ][1]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4176,9 +4511,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4193,10 +4525,8 @@ "my_hr_rule": "//td[contains(text(),\"H&R\")]/following-sibling::td/text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//td[contains(text(),\"做种大小\")]/following-sibling::td/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td[contains(text(),\"hash\")]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4211,12 +4541,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 49, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 56, "created_at": "2022-08-27 21:57:47.858000", - "updated_at": "2023-01-25 08:42:34.119277", + "updated_at": "2023-01-30 15:24:44.695104", "name": "柠檬", "url": "https://lemonhd.org/", "logo": "https://lemonhd.org/favicon.ico", @@ -4253,7 +4596,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4262,9 +4604,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4279,10 +4618,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@title=\"当前下载\"][1]/preceding-sibling::text()[1]", "seed_rule": "//img[@title=\"当前做种\"][1]/preceding-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//td[contains(text(),\"做种体积\")]/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[11]//td[@class=\"no_border_wide\"][2]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4297,12 +4634,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 50, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 57, "created_at": "2022-08-27 21:58:11.379000", - "updated_at": "2023-01-25 08:42:34.126803", + "updated_at": "2023-01-30 15:24:44.698474", "name": "南洋", "url": "https://nanyangpt.com/", "logo": "https://nanyangpt.com/favicon.ico", @@ -4339,7 +4689,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@alt", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": "//a[contains(@href,\"download.php?\") and contains(text(),\"右键\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4348,9 +4697,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php\")]/text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4365,10 +4711,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@alt=\"Torrents leeching\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@alt=\"Torrents seeding\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()[1]", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4383,12 +4727,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 51, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 58, "created_at": "2022-09-03 00:08:20.078000", - "updated_at": "2023-01-25 08:42:34.135140", + "updated_at": "2023-01-30 15:24:44.702103", "name": "吐鲁番", "url": "https://pt.eastgame.org/", "logo": "https://pt.eastgame.org/favicon.ico", @@ -4425,7 +4782,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4434,9 +4790,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches.php?id=\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[8]/nobr/text()", - "peer_speed_rule": ".//b[contains(text(),\"下载者\")]/following-sibling::table/tbody/tr/td[6]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4451,10 +4804,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//br/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td[@class=\"no_border_wide\"]/b[contains(text(),\"Hash 码:\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4469,12 +4820,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 52, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 59, "created_at": "2022-09-14 08:33:16.574000", - "updated_at": "2023-01-25 08:42:34.141003", + "updated_at": "2023-01-30 15:24:44.705416", "name": "KamePT", "url": "https://kamept.com/", "logo": "https://kamept.com/favicon.ico", @@ -4511,7 +4875,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?\") and contains(text(),\"右键查看\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4520,9 +4883,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]//text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]//text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4537,10 +4897,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4555,12 +4913,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 53, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 62, "created_at": "2022-07-27 13:01:11.697000", - "updated_at": "2023-01-25 08:42:34.154484", + "updated_at": "2023-01-30 15:24:44.708875", "name": "艾薇", "url": "http://avgv.cc/", "logo": "http://avgv.cc/favicon.ico", @@ -4597,7 +4968,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"]/a/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4606,9 +4976,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -4623,10 +4990,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4641,12 +5006,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 54, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 63, "created_at": "2022-09-19 22:02:22.069000", - "updated_at": "2023-01-25 08:42:34.169534", + "updated_at": "2023-01-30 15:24:44.712124", "name": "憨憨", "url": "https://hhanclub.top/", "logo": "https://hhanclub.top/favicon.ico", @@ -4683,7 +5061,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4692,9 +5069,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4709,10 +5083,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4727,12 +5099,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 55, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 64, "created_at": "2022-10-04 10:55:26.478000", - "updated_at": "2023-01-25 08:42:34.176047", + "updated_at": "2023-01-30 15:24:44.715549", "name": "瓷器", "url": "https://hdchina.org/", "logo": "https://hdchina.org/favicon.ico", @@ -4769,7 +5154,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4778,9 +5162,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//p/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4795,10 +5176,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//i[@title=\"当前下载\"][1]/following-sibling::text()[1]", "seed_rule": "//i[@title=\"当前做种\"][1]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//p/span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4813,12 +5192,25 @@ "notice_title": "//div[@class=\"announcebox\"]/div/h4", "notice_content": "//div[@class=\"announcebox\"]/div/h4/following-sibling::h3", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 56, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 65, "created_at": "2022-10-04 11:03:31.325000", - "updated_at": "2023-01-25 08:42:34.183843", + "updated_at": "2023-01-30 15:24:44.719069", "name": "北洋园", "url": "https://www.tjupt.org/", "logo": "https://www.tjupt.org/favicon.ico", @@ -4855,7 +5247,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4864,9 +5255,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4881,10 +5269,8 @@ "my_hr_rule": "//a[@href=\"https://www.tjupt.org/hnr_details.php\"][last()]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4899,12 +5285,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 57, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 66, "created_at": "2022-10-04 11:08:01.927000", - "updated_at": "2023-01-25 08:42:34.190976", + "updated_at": "2023-01-30 15:24:44.722446", "name": "UltraHD", "url": "https://ultrahd.net/", "logo": "https://ultrahd.net/favicon.ico", @@ -4941,7 +5340,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -4950,9 +5348,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -4967,10 +5362,8 @@ "my_hr_rule": "//span/a[contains(@href,\"myhr.php\")]//text()", "leech_rule": "//img[@title=\"当前下载\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@title=\"当前做种\"][1]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -4985,12 +5378,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 58, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 67, "created_at": "2022-10-04 11:18:37.790000", - "updated_at": "2023-01-25 08:42:34.200234", + "updated_at": "2023-01-30 15:24:44.726027", "name": "TU88", "url": "http://pt.tu88.men/", "logo": "http://pt.tu88.men/favicon.ico", @@ -5027,7 +5433,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5036,9 +5441,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5053,10 +5455,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5071,12 +5471,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 59, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 68, "created_at": "2022-10-04 11:19:33.274000", - "updated_at": "2023-01-25 08:42:34.209777", + "updated_at": "2023-01-30 15:24:44.729516", "name": "PT分享站", "url": "https://pt.itzmx.com/", "logo": "https://pt.itzmx.com/favicon.ico", @@ -5113,7 +5526,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5122,9 +5534,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5139,10 +5548,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5157,12 +5564,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 60, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 69, "created_at": "2022-10-11 20:56:14.504000", - "updated_at": "2023-01-25 08:42:34.218659", + "updated_at": "2023-01-30 15:24:44.732959", "name": "兽", "url": "https://pt.hd4fans.org/", "logo": "https://pt.hd4fans.org/favicon.ico", @@ -5199,7 +5619,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5208,9 +5627,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5225,10 +5641,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5243,12 +5657,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 61, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 70, "created_at": "2022-07-17 10:24:59.754000", - "updated_at": "2023-01-25 08:42:34.225157", + "updated_at": "2023-01-30 15:24:44.736484", "name": "BT学校", "url": "https://pt.btschool.club/", "logo": "https://gitee.com/ngfchl/ptools/raw/master/static/logo/btschool.ico", @@ -5285,7 +5712,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@class", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5294,9 +5720,6 @@ "seeders_rule": ".//td[6]/b/a/text()", "leechers_rule": ".//td[7]/b/a/text()", "completers_rule": ".//td[8]/a/b/text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[5]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td[1]//span/@title", @@ -5311,10 +5734,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"][1]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"][1]/following-sibling::text()[1]", - "record_count_rule": "/html/body/b/text()", "seed_vol_rule": "//td[contains(text(),\"当前做种\")]/following-sibling::td/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//tr[13]/td[2]/table/tbody/tr/td[1]/text()", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5329,12 +5750,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 62, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 71, "created_at": "2022-10-13 20:46:41.135391", - "updated_at": "2023-01-25 08:42:34.234237", + "updated_at": "2023-01-30 15:24:44.739962", "name": "GGPT", "url": "https://gamegamept.cn/", "logo": "https://gamegamept.cn/favicon.ico", @@ -5371,7 +5805,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5380,9 +5813,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5397,10 +5827,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5415,12 +5843,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 63, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 72, "created_at": "2022-10-13 21:12:00.102150", - "updated_at": "2023-01-25 08:42:34.239465", + "updated_at": "2023-01-30 15:24:44.743355", "name": "飞天拉面", "url": "https://nextpt.net/", "logo": "https://nextpt.net/favicon.ico", @@ -5457,7 +5898,6 @@ "category_rule": ".//td[1]//a[contains(@href,\"/Torrents?type\")]/text()", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//a[contains(@href,\"download\") and contains(@href,\"passkey\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[7]//text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@class", @@ -5466,9 +5906,6 @@ "seeders_rule": ".//td[8]//text()", "leechers_rule": ".//td[9]//text()", "completers_rule": ".//td[10]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//ul/li[contains(text(),\"本月您总计可发送\")]/text()", "time_join_rule": "//th[contains(text(),\"加入\")]/following-sibling::td/text()", @@ -5483,10 +5920,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//div/text/text[contains(text(),\"⇈\")]/following-sibling::text()[1]", "seed_rule": "//div/text/text[contains(text(),\"当前活动\")]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[6]", "mailbox_rule": "//a[@href=\"/Mail\" and contains(text(),\"条\")]/text()[1]", - "hash_rule": "//div/text[contains(text(),\"Hash\")]/text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//div[contains(text(),\"Passkey\")]/following-sibling::input/@value", "my_uid_rule": "//div/a[contains(@href,\"/Users/profile?uid=\")]/@href", @@ -5501,12 +5936,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "Index", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 64, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 73, "created_at": "2022-10-13 22:31:26.178291", - "updated_at": "2023-01-25 08:42:34.244292", + "updated_at": "2023-01-30 15:24:44.746952", "name": "织梦", "url": "https://zmpt.cc/", "logo": "https://zmpt.cc/favicon.ico", @@ -5543,7 +5991,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5552,9 +5999,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5569,10 +6013,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5587,12 +6029,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 65, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 74, "created_at": "2022-10-14 14:23:01.057107", - "updated_at": "2023-01-25 08:42:34.252249", + "updated_at": "2023-01-30 15:24:44.750556", "name": "52PT", "url": "https://52pt.site/", "logo": "https://52pt.site/favicon.ico", @@ -5629,7 +6084,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5638,9 +6092,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5655,10 +6106,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]/font[last()]/text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5673,12 +6122,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 66, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 75, "created_at": "2022-10-14 14:25:28.692053", - "updated_at": "2023-01-25 08:42:34.257548", + "updated_at": "2023-01-30 15:24:44.754086", "name": "TCCF", "url": "https://et8.org/", "logo": "https://et8.org/favicon.ico", @@ -5715,7 +6177,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5724,9 +6185,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5741,10 +6199,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5759,12 +6215,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 67, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 76, "created_at": "2022-10-15 20:49:44.721748", - "updated_at": "2023-01-25 08:42:34.265787", + "updated_at": "2023-01-30 15:24:44.757676", "name": "SRVFI", "url": "https://srvfi.top/", "logo": "https://srvfi.top/favicon.ico", @@ -5801,7 +6270,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5810,9 +6278,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5827,10 +6292,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//br/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5845,12 +6308,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 68, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 77, "created_at": "2022-10-17 07:42:57.547264", - "updated_at": "2023-01-25 08:42:34.271225", + "updated_at": "2023-01-30 15:24:44.761073", "name": "ICC2022", "url": "https://www.icc2022.com/", "logo": "https://www.icc2022.com/favicon.ico", @@ -5887,7 +6363,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5896,9 +6371,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5913,10 +6385,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -5931,12 +6401,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 69, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 78, "created_at": "2022-10-21 18:14:12.349610", - "updated_at": "2023-01-25 08:42:34.275939", + "updated_at": "2023-01-30 15:24:44.764521", "name": "iHD", "url": "https://ihdbits.me/", "logo": "https://ihdbits.me/favicon.ico", @@ -5973,7 +6456,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -5982,9 +6464,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -5999,10 +6478,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6017,12 +6494,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 70, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 79, "created_at": "2022-11-01 00:06:06.053113", - "updated_at": "2023-01-25 08:42:34.284100", + "updated_at": "2023-01-30 15:24:44.768154", "name": "红叶", "url": "http://leaves.red/", "logo": "http://leaves.red/favicon.ico", @@ -6059,7 +6549,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6068,9 +6557,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6085,10 +6571,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6103,12 +6587,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 71, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 81, "created_at": "2022-11-04 23:06:38.778550", - "updated_at": "2023-01-25 08:42:34.289592", + "updated_at": "2023-01-30 15:24:44.771746", "name": "龙之家", "url": "https://www.dragonhd.xyz/", "logo": "https://www.dragonhd.xyz/favicon.ico", @@ -6145,7 +6642,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6154,9 +6650,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6171,10 +6664,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6189,12 +6680,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 72, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 82, "created_at": "2022-11-08 09:18:21.489786", - "updated_at": "2023-01-25 08:42:34.296537", + "updated_at": "2023-01-30 15:24:44.775264", "name": "杏林", "url": "https://xinglin.one/", "logo": "https://xinglin.one/favicon.ico", @@ -6231,7 +6735,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6240,9 +6743,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6257,10 +6757,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6275,12 +6773,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 73, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 83, "created_at": "2022-11-12 22:41:41.000351", - "updated_at": "2023-01-25 08:42:34.303322", + "updated_at": "2023-01-30 15:24:44.778757", "name": "Filept", "url": "https://www.filept.com/", "logo": "https://www.filept.com/favicon.ico", @@ -6317,7 +6828,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6326,9 +6836,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6343,10 +6850,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6361,12 +6866,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 74, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 85, "created_at": "2022-11-23 17:58:52.708203", - "updated_at": "2023-01-27 20:59:08.175902", + "updated_at": "2023-01-30 15:24:44.782240", "name": "海豚", "url": "https://dicmusic.club/", "logo": "https://dicmusic.club/favicon.ico", @@ -6403,7 +6921,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6412,9 +6929,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6429,10 +6943,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//div[@class=\"HeaderProfile\"]/a[contains(@href,\"user.php?id=\")]/@href", @@ -6447,12 +6959,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 75, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 86, "created_at": "2022-12-09 17:40:04.727545", - "updated_at": "2023-01-25 08:42:34.318888", + "updated_at": "2023-01-30 15:24:44.785719", "name": "Uploads", "url": "http://uploads.ltd/", "logo": "http://uploads.ltd/favicon.ico", @@ -6489,7 +7014,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6498,9 +7022,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6515,10 +7036,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6533,12 +7052,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 76, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 87, "created_at": "2022-12-20 08:24:33.287437", - "updated_at": "2023-01-25 08:42:34.324674", + "updated_at": "2023-01-30 15:24:44.789271", "name": "大青虫", "url": "https://cyanbug.net/", "logo": "https://cyanbug.net/favicon.ico", @@ -6575,7 +7107,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6584,9 +7115,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6601,10 +7129,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[4]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6619,12 +7145,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 77, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 89, "created_at": "2022-12-20 08:27:01.381014", - "updated_at": "2023-01-25 08:42:34.332925", + "updated_at": "2023-01-30 15:24:44.792736", "name": "鲨鱼", "url": "https://sharkpt.net/", "logo": "https://sharkpt.net/favicon.ico", @@ -6661,7 +7200,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6670,9 +7208,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//div/a[contains(@href,\"invite.php?id=\")]/text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -6687,10 +7222,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//span[contains(text(),\"当前下载\")]/text()[1]", "seed_rule": "//span[contains(text(),\"当前上传\")]/following-sibling::span/text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//div/span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -6705,12 +7238,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 78, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 92, "created_at": "2022-12-25 17:54:44.854475", - "updated_at": "2023-01-28 21:33:08.335206", + "updated_at": "2023-01-30 15:24:44.796007", "name": "莫妮卡", "url": "https://monikadesign.uk/", "logo": "https://monikadesign.uk/favicon.ico", @@ -6747,7 +7293,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6756,9 +7301,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"邀请\") and not(contains(text(),\"可以\"))]/following-sibling::td/span/text()", "time_join_rule": "//div[@class=\"header gradient blue\"]//h4[2]/text()", @@ -6773,10 +7315,8 @@ "my_hr_rule": "//strong[contains(text(),\"有效\")]/text()", "leech_rule": "//li[@title=\"下载中\"]/a/text()", "seed_rule": "//li[@title=\"做种中\"]/a/text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//td[contains(text(),\"做种体积\")]/following-sibling::td[1]//text()[1]", "mailbox_rule": "//a[contains(@href,\"mail/inbox\")]/*[name()=\"svg\"]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//span[@class=\"text-monospace\"]/text()", "my_uid_rule": "//li/a[contains(@href,\"users\")]/img/@alt", @@ -6791,12 +7331,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 79, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 93, "created_at": "2022-12-26 10:00:41.449226", - "updated_at": "2023-01-25 08:42:34.343106", + "updated_at": "2023-01-30 15:24:44.799360", "name": "核弹头", "url": "https://hd-torrents.org/", "logo": "https://hd-torrents.org/favicon.ico", @@ -6833,7 +7386,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6842,9 +7394,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//tr/td[contains(text(), \"Invites\")]/a/text()", "time_join_rule": "//td[contains(text(),\"Joined on\")]/following-sibling::td/text()", @@ -6859,10 +7408,8 @@ "my_hr_rule": "//tr/td[text()=\"Total Warns\"][1]/following-sibling::td[1]/text()", "leech_rule": "//span[@title=\"Leech\"]//text()", "seed_rule": "//span[@title=\"Seed\"]//text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[text()=\"Total Size of torrents\"][1]/following-sibling::td[1]/text()", "mailbox_rule": "//div[contains(@class,\"new-pm\")]/h4/text()", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(), \"PID\")]/following-sibling::td/text()", "my_uid_rule": "//td[1]/a[contains(@href,\"usercp.php?uid=\") and @class=\"nav\"][1]/@href", @@ -6877,12 +7424,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 80, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 94, "created_at": "2022-12-26 10:51:49.583666", - "updated_at": "2023-01-28 21:45:56.246428", + "updated_at": "2023-01-30 15:24:44.802499", "name": "Exoticaz", "url": "https://exoticaz.to/", "logo": "https://exoticaz.to/favicon.ico", @@ -6919,7 +7479,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -6928,9 +7487,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"Invites\")]/following-sibling::td/text()", "time_join_rule": "//td[contains(text(),\"Joined\")]/following-sibling::td/text()", @@ -6945,10 +7501,8 @@ "my_hr_rule": "//a[@title=\"Hit and Run Torrents\"]/following-sibling::text()", "leech_rule": "//a[text()=\"Leeching:\"]/following-sibling::text()", "seed_rule": "//a[text()=\"Seeding:\"]/following-sibling::text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//span[@class=\"text-yellow\"]/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//span[@class=\"text-monospace\"]/text()", "my_uid_rule": "//a[contains(@href,\"profile\")]/span/text()", @@ -6963,12 +7517,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 81, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 95, "created_at": "2022-12-26 11:44:05.766041", - "updated_at": "2023-01-28 21:45:40.285912", + "updated_at": "2023-01-30 15:24:44.805883", "name": "Cinemaz", "url": "https://cinemaz.to/", "logo": "https://cinemaz.to/images/cinemaz-favicon.png", @@ -7005,7 +7572,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7014,9 +7580,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"Invites\")]/following-sibling::td/text()", "time_join_rule": "//td[contains(text(),\"Joined\")]/following-sibling::td/text()", @@ -7031,10 +7594,8 @@ "my_hr_rule": "//a[@title=\"Hit and Run Torrents\"]/following-sibling::text()", "leech_rule": "//a[text()=\"Leeching:\"]/following-sibling::text()", "seed_rule": "//a[text()=\"Seeding:\"]/following-sibling::text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//span[@class=\"movie-extra fa fa-database text-orange\"]/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//span[@class=\"text-monospace\"]/text()", "my_uid_rule": "//a[contains(@href,\"profile\")]/span/text()", @@ -7049,12 +7610,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 82, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 96, "created_at": "2022-12-26 12:12:22.433872", - "updated_at": "2023-01-28 21:45:32.414916", + "updated_at": "2023-01-30 15:24:44.809304", "name": "Avistaz", "url": "https://avistaz.to/", "logo": "https://avistaz.to/images/avistaz-favicon.png", @@ -7091,7 +7665,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7100,9 +7673,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"Invites\")]/following-sibling::td/text()", "time_join_rule": "//td[contains(text(),\"Joined\")]/following-sibling::td/text()", @@ -7117,10 +7687,8 @@ "my_hr_rule": "//a[@title=\"Hit and Run Torrents\"]/following-sibling::text()", "leech_rule": "//a[text()=\"Leeching:\"]/following-sibling::text()", "seed_rule": "//a[text()=\"Seeding:\"]/following-sibling::text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//span[@class=\"movie-extra fa fa-database text-orange\"]/text()", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//span[@class=\"text-monospace\"]/text()", "my_uid_rule": "//a[contains(@href,\"profile\")]/span/text()", @@ -7135,12 +7703,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "/", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 83, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 97, "created_at": "2022-12-26 13:31:54.151043", - "updated_at": "2023-01-25 08:42:34.368512", + "updated_at": "2023-01-30 15:24:44.812589", "name": "Filelist", "url": "https://filelist.io/", "logo": "https://filelist.io/favicon.ico", @@ -7177,7 +7758,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7186,9 +7766,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//a[@href=\"/invite.php\"]//text()[1]", "time_join_rule": "//td[contains(text(),\"Join\")]/following-sibling::td/text()", @@ -7203,10 +7780,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//div[contains(text(),\"Seeding\")]/b[1]/text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//div[contains(text(),\"Seeding\")]/b[2]/text()", "mailbox_rule": "//a[@href=\"/messages.php\"]/font[1]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//input[@name=\"resetpasskey\"]/following-sibling::text()[1]", "my_uid_rule": "//div[@class=\"status_avatar\"]/a[contains(@href, \"/userdetails.php?id=\")]/@href", @@ -7221,12 +7796,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 84, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 98, "created_at": "2022-12-26 14:03:05.511105", - "updated_at": "2023-01-25 08:42:34.373689", + "updated_at": "2023-01-30 15:24:44.815995", "name": "普斯特", "url": "https://pt.hdpost.top/", "logo": "https://pt.hdpost.top/favicon.ico", @@ -7263,7 +7851,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7272,9 +7859,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"邀请\") and not(contains(text(),\"可以\"))]/following-sibling::td/span/text()", "time_join_rule": "//div[@class=\"header gradient blue\"]//h4[2]/text()", @@ -7289,10 +7873,8 @@ "my_hr_rule": "//strong[contains(text(),\"有效\")]/text()", "leech_rule": "//li[@title=\"吸血\"]/a/text()", "seed_rule": "//li[@title=\"做种\"]/a/text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//td[contains(text(),\"做种体积\")]/following-sibling::td[1]//text()[1]", "mailbox_rule": "//a[contains(@href,\"mail/inbox\")]/*[name()=\"svg\"]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//span[@class=\"text-monospace\"]/text()", "my_uid_rule": "//a[@class=\"top-nav__username--highresolution\"]/span/text()", @@ -7307,12 +7889,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 85, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 99, "created_at": "2022-12-26 19:45:08.010450", - "updated_at": "2023-01-25 08:42:34.380075", + "updated_at": "2023-01-30 15:24:44.819259", "name": "朱雀", "url": "https://zhuque.in/", "logo": "https://gitee.com/ngfchl/ptools/raw/master/static/logo/zhuque.png", @@ -7349,7 +7944,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7358,9 +7952,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "invite", "time_join_rule": "regTime", @@ -7375,10 +7966,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "leeching", "seed_rule": "seeding", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "seedSize", "mailbox_rule": "mail", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "id", @@ -7393,12 +7982,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 86, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 100, "created_at": "2022-12-27 12:40:22.412286", - "updated_at": "2023-01-25 08:42:34.386714", + "updated_at": "2023-01-30 15:24:44.822589", "name": "Oldtoons", "url": "https://oldtoons.world/", "logo": "https://oldtoons.world/favicon.ico", @@ -7435,7 +8037,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7444,9 +8045,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"Join\")]/following-sibling::td/span/@title", @@ -7461,10 +8059,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"new\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"new\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"Passkey\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -7479,12 +8075,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 87, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 101, "created_at": "2022-12-27 12:56:12.440343", - "updated_at": "2023-01-28 21:21:32.024201", + "updated_at": "2023-01-30 15:24:44.825712", "name": "Reelflix", "url": "https://reelflix.xyz/", "logo": "https://reelflix.xyz/favicon.ico", @@ -7521,7 +8130,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7530,9 +8138,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//td[contains(text(),\"邀请\") and not(contains(text(),\"可以\"))]/following-sibling::td/span/text()", "time_join_rule": "//div[@class=\"header gradient blue\"]//h4[2]/text()", @@ -7547,10 +8152,8 @@ "my_hr_rule": "//strong[contains(text(),\"有效\")]/text()", "leech_rule": "//li[@title=\"吸血\"]/a/text()", "seed_rule": "//li[@title=\"做种\"]/a/text()", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//td[contains(text(),\"做种体积\")]/following-sibling::td[1]//text()[1]", "mailbox_rule": "//a[contains(@href,\"mail/inbox\")]/*[name()=\"svg\"]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//span[@class=\"text-monospace\"]/text()", "my_uid_rule": "//li/a[contains(@href,\"users\")]/img/@alt", @@ -7565,12 +8168,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 88, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 102, "created_at": "2023-01-03 09:53:52.495825", - "updated_at": "2023-01-25 08:42:34.398199", + "updated_at": "2023-01-30 15:24:44.828927", "name": "2xfree", "url": "https://pt.2xfree.org/", "logo": "https://pt.2xfree.org/favicon.ico", @@ -7607,7 +8223,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7616,9 +8231,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//span/a[contains(@href,\"invite.php?id=\")]/following-sibling::text()[1]", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -7633,10 +8245,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//p/preceding-sibling::text()[1]", "mailbox_rule": "//a[@href=\"messages.php\"]/font[contains(text(),\"条\")]/text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[@href=\"index.php\"]/font[contains(text(),\"条\")]/text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -7651,12 +8261,25 @@ "notice_title": "//td[@class=\"text\"]/div/a", "notice_content": "//td[@class=\"text\"]/div/a/following-sibling::div", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 89, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" }, { "id": 103, "created_at": "2023-01-16 16:45:01.890366", - "updated_at": "2023-01-25 08:42:34.404829", + "updated_at": "2023-01-30 15:24:44.832003", "name": "蝴蝶", "url": "https://hudbt.hust.edu.cn/", "logo": "https://hudbt.hust.edu.cn/favicon.ico", @@ -7693,7 +8316,6 @@ "category_rule": ".//td[@class=\"rowfollow nowrap\"][1]/a[1]/img/@title", "poster_rule": ".//table/tr/td[1]/img/@src", "magnet_url_rule": ".//td/a[contains(@href,\"download.php?id=\")]/@href", - "download_url_rule": ".//a[contains(@href,\"download.php?id=\") and contains(@href,\"passkey\")]/@href", "size_rule": ".//td[5]/text()", "hr_rule": ".//table/tr/td/img[@class=\"hitandrun\"]/@title", "sale_rule": ".//img[contains(@class,\"free\")]/@alt", @@ -7702,9 +8324,6 @@ "seeders_rule": ".//a[contains(@href,\"#seeders\")]/text()", "leechers_rule": ".//a[contains(@href,\"#leechers\")]/text()", "completers_rule": ".//a[contains(@href,\"viewsnatches\")]//text()", - "viewfilelist_rule": ".//td/text()", - "viewpeerlist_rule": ".//tr/td[9]/nobr/text()", - "peer_speed_rule": ".//tr/td[7]/nobr/text()", "remark": "", "invitation_rule": "//a[contains(@href,\"invite.php\")]/span[@id=\"invites\"]/text()", "time_join_rule": "//td[contains(text(),\"加入\")]/following-sibling::td/span/@title", @@ -7719,10 +8338,8 @@ "my_hr_rule": "//a[@href=\"myhr.php\"]//text()", "leech_rule": "//img[@class=\"arrowdown\"]/following-sibling::text()[1]", "seed_rule": "//img[@class=\"arrowup\"]/following-sibling::text()[1]", - "record_count_rule": ".//td[3]/text()", "seed_vol_rule": "//tr/td[3]", "mailbox_rule": "//a[contains(@href,\"messages.php\") and contains(text(),\"条\")]//text()[1]", - "hash_rule": "//td/b[contains(text(),\"Hash\")]/following::text()[1]", "notice_rule": "//a[contains(@href,\"index.php\") and contains(text(),\"条\")]//text()[1]", "my_passkey_rule": "//td[contains(text(),\"密钥\")]/following-sibling::td[1]/text()", "my_uid_rule": "//table[@id=\"info_block\"]//span/a[contains(@class,\"_Name\") and contains(@href,\"userdetails.php?id=\")]/@href", @@ -7737,6 +8354,19 @@ "notice_title": "//div[@id=\"news\"]/ul/li/a", "notice_content": "//div[@id=\"news\"]/ul/li/a/following-sibling::div/div/font", "page_index": "index.php", - "publish_rule": "//p/preceding-sibling::b/text()[1]" + "publish_rule": "//p/preceding-sibling::b/text()[1]", + "identity": 90, + "detail_area_rule": "//h1/following::td/b[contains(text(),\"地区\")]/text()", + "detail_category_rule": "//td/b[contains(text(),\"类型\")]/following-sibling::text()[1]", + "detail_count_files_rule": "//td/b[contains(text(),\"文件数\")]/following-sibling::text()[1]", + "detail_douban_rule": "//td/a[starts-with(@href,\"https://movie.douban.com/subject/\")][1]", + "detail_download_url_rule": "//a[@class=\"index\" and contains(@href,\"download.php\")]/@href", + "detail_free_expire_rule": "//h1/b/font[contains(@class,\"free\")]/parent::b/following-sibling::b/span/@title", + "detail_free_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_hash_rule": "//td/b[contains(text(),\"Hash\")]/following-sibling::text()[1]", + "detail_size_rule": "//td//b[contains(text(),\"大小\")]/following::text()[1]", + "detail_subtitle_rule": "//td[contains(text(),\"副标题\")]/following-sibling::td/text()[1]", + "detail_title_rule": "//h1/text()[1]", + "detail_year_publish_rule": "year_current_publish: //td/b[contains(text(),\"发行版年份\")]/text()" } ] \ No newline at end of file diff --git a/pt_site_userlevelrule.json b/pt_site_userlevelrule.json index 5d87453..b1f1cbd 100644 --- a/pt_site_userlevelrule.json +++ b/pt_site_userlevelrule.json @@ -2,12625 +2,14203 @@ { "id": 1, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.669508", + "updated_at": "2023-01-30 14:59:31.556605", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://1ptba.com/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 2, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.673498", + "updated_at": "2023-01-30 14:59:31.559878", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 20000, "ratio": 1.6, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://1ptba.com/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 3, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.676828", + "updated_at": "2023-01-30 14:59:31.563318", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "350GB", - "bonus": 0, "score": 100000, "ratio": 1.9, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://1ptba.com/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 4, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.679948", + "updated_at": "2023-01-30 14:59:31.566394", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 200000, "ratio": 2.3, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://1ptba.com/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 5, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.683237", + "updated_at": "2023-01-30 14:59:31.569573", "level_id": 5, "level": "InsaneUser", "days": 30, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 400000, "ratio": 2.7, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://1ptba.com/" + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 6, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.686325", + "updated_at": "2023-01-30 14:59:31.572669", "level_id": 6, "level": "VeteranUser", "days": 60, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 600000, "ratio": 3.2, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://1ptba.com/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 7, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.689830", + "updated_at": "2023-01-30 14:59:31.575859", "level_id": 7, "level": "ExtremeUser", "days": 90, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1000000, "ratio": 3.6, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://1ptba.com/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 8, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.693132", + "updated_at": "2023-01-30 14:59:31.578828", "level_id": 8, "level": "UltimateUser", "days": 120, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 2500000, "ratio": 4.2, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://1ptba.com/" + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 9, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.696663", + "updated_at": "2023-01-30 14:59:31.581725", "level_id": 9, "level": "NexusMaster", "days": 150, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 3000000, "ratio": 5.2, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://1ptba.com/" + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 10, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.699866", + "updated_at": "2023-01-30 14:59:31.584927", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "1. VIP 贵宾会员期限内不受系统分享率限制,可以在贵宾期限内无限制下载。可以在贵宾期限内无视 H&R 规则,畅快下载; 2. VIP 贵宾会员期限内不会因分享率过低而被系统封禁,免除自动降级,贵宾期限内不计算下行流量; 3. VIP 贵宾会员期限内开启排行榜查看权限; 4. VIP 贵宾会员期限内无视每年的年终考核和年中考核; 5. 拥有捐赠者黄星标识的会员,每小时做种获取魔力值双倍的奖励。", - "site_id": "https://1ptba.com/" + "rights": "1.VIP贵宾会员期限内不受系统分享率限制,可以在贵宾期限内无限制下载。可以在贵宾期限内无视H&R规则,畅快下载;2.VIP贵宾会员期限内不会因分享率过低而被系统封禁,免除自动降级,贵宾期限内不计算下行流量;3.VIP贵宾会员期限内开启排行榜查看权限;4.VIP贵宾会员期限内无视每年的年终考核和年中考核;5.拥有捐赠者黄星标识的会员,每小时做种获取魔力值双倍的奖励。", + "site_id": 3, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 11, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.703161", + "updated_at": "2023-01-30 14:59:31.587902", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://pt.2xfree.org/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 12, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.706313", + "updated_at": "2023-01-30 14:59:31.591113", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.2xfree.org/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 13, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.709613", + "updated_at": "2023-01-30 14:59:31.594164", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://pt.2xfree.org/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 14, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.712664", + "updated_at": "2023-01-30 14:59:31.597321", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://pt.2xfree.org/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 15, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.715866", + "updated_at": "2023-01-30 14:59:31.600444", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pt.2xfree.org/" + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 16, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.718868", + "updated_at": "2023-01-30 14:59:31.603730", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://pt.2xfree.org/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 17, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.722041", + "updated_at": "2023-01-30 14:59:31.606877", "level_id": 7, "level": "ExtremeUser", "days": 80, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://pt.2xfree.org/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 18, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.725004", + "updated_at": "2023-01-30 14:59:31.609803", "level_id": 8, "level": "UltimateUser", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://pt.2xfree.org/" + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 19, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.728059", + "updated_at": "2023-01-30 14:59:31.612975", "level_id": 9, "level": "NexusMaster", "days": 150, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://pt.2xfree.org/" + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 20, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.731330", + "updated_at": "2023-01-30 14:59:31.615929", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pt.2xfree.org/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 89, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 21, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.734351", + "updated_at": "2023-01-30 14:59:31.619251", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://52pt.site/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 22, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.737643", + "updated_at": "2023-01-30 14:59:31.622240", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://52pt.site/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 23, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.740664", + "updated_at": "2023-01-30 14:59:31.625659", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://52pt.site/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 24, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.743849", + "updated_at": "2023-01-30 14:59:31.628666", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://52pt.site/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 25, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.746765", + "updated_at": "2023-01-30 14:59:31.631992", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1536GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://52pt.site/" + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 26, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.749824", + "updated_at": "2023-01-30 14:59:31.635030", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2560GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://52pt.site/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 27, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.752892", + "updated_at": "2023-01-30 14:59:31.639640", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3072GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://52pt.site/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 28, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.755695", + "updated_at": "2023-01-30 14:59:31.645376", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "4608GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://52pt.site/" + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 29, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.758757", + "updated_at": "2023-01-30 14:59:31.651760", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "5632GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://52pt.site/" + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 30, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.761636", + "updated_at": "2023-01-30 14:59:31.657012", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://52pt.site/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 66, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 31, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.764909", + "updated_at": "2023-01-30 14:59:31.660933", "level_id": 1, "level": "Newbie", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Description: Newly registered users. Limited to download torrents that are at least one (1) week old. Limits: Can download 10 torrents a day. Cannot upload.", - "site_id": "https://avistaz.to/" + "rights": "Description: Newlyregisteredusers.Limitedtodownloadtorrentsthatareatleastone(1)weekold.Limits: Candownload10torrentsaday.Cannotupload.", + "site_id": 83, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 32, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.767881", + "updated_at": "2023-01-30 14:59:31.664827", "level_id": 2, "level": "Member", "days": 1, "uploaded": "5GB", "downloaded": "50", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, - "rights": "Description: Registered users with 5GB upload and ratio above 1.0. (Newbies are automatically promoted to member status when they have been newbies for 7 or more days and have achieved a ratio of 1.0 or higher with at least a 5GB upload.) Limits:Can download 50 torrents a day. Can upload.", - "site_id": "https://avistaz.to/" + "rights": "Description: Registereduserswith5GBuploadandratioabove1.0.(Newbiesareautomaticallypromotedtomemberstatuswhentheyhavebeennewbiesfor7ormoredaysandhaveachievedaratioof1.0orhigherwithatleasta5GBupload.)Limits:Candownload50torrentsaday.Canupload.", + "site_id": 83, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 33, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.770946", + "updated_at": "2023-01-30 14:59:31.667842", "level_id": 0, "level": "V.I.P.", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Description: Donator / Distinguished member / Retired Staff. Limits:Can download 100 torrents a day. Can upload.", - "site_id": "https://avistaz.to/" + "rights": "Description: Donator/Distinguishedmember/RetiredStaff.Limits:Candownload100torrentsaday.Canupload.", + "site_id": 83, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 34, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.774059", + "updated_at": "2023-01-30 14:59:31.671342", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://pt.btschool.club/" + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 35, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.777040", + "updated_at": "2023-01-30 14:59:31.675759", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 2, "torrents": 0, - "rights": "得到一个邀请名额;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.btschool.club/" + "rights": "得到一个邀请名额;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 36, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.780096", + "updated_at": "2023-01-30 14:59:31.679397", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 80000, "ratio": 2.5, "torrents": 0, - "rights": "Elite User可以直接发布种子; 可以查看排行榜。", - "site_id": "https://pt.btschool.club/" + "rights": "EliteUser可以直接发布种子;可以查看排行榜。", + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 37, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.783052", + "updated_at": "2023-01-30 14:59:31.683265", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 3, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://pt.btschool.club/" + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 38, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.786288", + "updated_at": "2023-01-30 14:59:31.686943", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 3.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pt.btschool.club/" + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 39, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.789291", + "updated_at": "2023-01-30 14:59:31.690992", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 400000, "ratio": 4, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。 Veteran User及以上用户封存账号后不会被删除。", - "site_id": "https://pt.btschool.club/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户封存账号后不会被删除。", + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 40, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.792375", + "updated_at": "2023-01-30 14:59:31.694456", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 600000, "ratio": 4.5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。Extreme User及以上用户会永远保留账号。", - "site_id": "https://pt.btschool.club/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。ExtremeUser及以上用户会永远保留账号。", + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 41, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.795251", + "updated_at": "2023-01-30 14:59:31.698556", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 800000, "ratio": 5, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://pt.btschool.club/" + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 42, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.798268", + "updated_at": "2023-01-30 14:59:31.702769", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "10TB", - "bonus": 0, "score": 1000000, "ratio": 5.5, "torrents": 0, - "rights": "得到十个邀请名额; 可以发送邀请。", - "site_id": "https://pt.btschool.club/" + "rights": "得到十个邀请名额;可以发送邀请。", + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 43, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.801384", + "updated_at": "2023-01-30 14:59:31.707026", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\t和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pt.btschool.club/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 62, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 44, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.804214", + "updated_at": "2023-01-30 14:59:31.710989", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://carpt.net/" + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 45, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.807267", + "updated_at": "2023-01-30 14:59:31.715465", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 40000, "ratio": 2, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://carpt.net/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 46, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.810145", + "updated_at": "2023-01-30 14:59:31.719921", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "250GB", - "bonus": 0, "score": 80000, "ratio": 3, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://carpt.net/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 47, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.813210", + "updated_at": "2023-01-30 14:59:31.723732", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 150000, "ratio": 4, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://carpt.net/" + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 48, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.816013", + "updated_at": "2023-01-30 14:59:31.727232", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 250000, "ratio": 5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://carpt.net/" + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 49, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.819252", + "updated_at": "2023-01-30 14:59:31.730342", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 400000, "ratio": 6, "torrents": 0, "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。", - "site_id": "https://carpt.net/" + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 50, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.822519", + "updated_at": "2023-01-30 14:59:31.733717", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 600000, "ratio": 7, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。Extreme User及以上用户会永远保留账号。", - "site_id": "https://carpt.net/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。ExtremeUser及以上用户会永远保留账号。", + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 51, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.825638", + "updated_at": "2023-01-30 14:59:31.737039", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 800000, "ratio": 8, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://carpt.net/" + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 52, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.828959", + "updated_at": "2023-01-30 14:59:31.740806", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 1000000, "ratio": 9, "torrents": 0, "rights": "得到十个邀请名额。可以发送邀请。", - "site_id": "https://carpt.net/" + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 53, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.832036", + "updated_at": "2023-01-30 14:59:31.744451", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://carpt.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 4, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 54, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.835254", + "updated_at": "2023-01-30 14:59:31.747986", "level_id": 1, "level": "Newbie", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Description: Newly registered users. Limited to download torrents that are at least one (1) week old. Limits: Can download 10 torrents a day. Cannot upload.", - "site_id": "https://cinemaz.to/" + "rights": "Description: Newlyregisteredusers.Limitedtodownloadtorrentsthatareatleastone(1)weekold.Limits: Candownload10torrentsaday.Cannotupload.", + "site_id": 82, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 55, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.838308", + "updated_at": "2023-01-30 14:59:31.751727", "level_id": 2, "level": "Member", "days": 1, "uploaded": "5GB", "downloaded": "50", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, - "rights": "Description: Registered users with 5GB upload and ratio above 1.0. (Newbies are automatically promoted to member status when they have been newbies for 7 or more days and have achieved a ratio of 1.0 or higher with at least a 5GB upload.) Limits:Can download 50 torrents a day. Can upload.", - "site_id": "https://cinemaz.to/" + "rights": "Description: Registereduserswith5GBuploadandratioabove1.0.(Newbiesareautomaticallypromotedtomemberstatuswhentheyhavebeennewbiesfor7ormoredaysandhaveachievedaratioof1.0orhigherwithatleasta5GBupload.)Limits:Candownload50torrentsaday.Canupload.", + "site_id": 82, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 56, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.841634", + "updated_at": "2023-01-30 14:59:31.755107", "level_id": 0, "level": "V.I.P.", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Description: Donator / Distinguished member / Retired Staff. Limits:Can download 100 torrents a day. Can upload.", - "site_id": "https://cinemaz.to/" + "rights": "Description: Donator/Distinguishedmember/RetiredStaff.Limits:Candownload100torrentsaday.Canupload.", + "site_id": 82, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 57, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.844555", + "updated_at": "2023-01-30 14:59:31.758553", "level_id": 1, "level": "Newbie", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Description: Newly registered users. Limited to download torrents that are at least one (1) week old. Limits: Can download 10 torrents a day. Cannot upload.", - "site_id": "https://exoticaz.to/" + "rights": "Description: Newlyregisteredusers.Limitedtodownloadtorrentsthatareatleastone(1)weekold.Limits: Candownload10torrentsaday.Cannotupload.", + "site_id": 81, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 58, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.847881", + "updated_at": "2023-01-30 14:59:31.761627", "level_id": 2, "level": "Member", "days": 1, "uploaded": "5GB", "downloaded": "50", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, - "rights": "Description: Registered users with 5GB upload and ratio above 1.0. (Newbies are automatically promoted to member status when they have been newbies for 7 or more days and have achieved a ratio of 1.0 or higher with at least a 5GB upload.) Limits:Can download 50 torrents a day. Can upload.", - "site_id": "https://exoticaz.to/" + "rights": "Description: Registereduserswith5GBuploadandratioabove1.0.(Newbiesareautomaticallypromotedtomemberstatuswhentheyhavebeennewbiesfor7ormoredaysandhaveachievedaratioof1.0orhigherwithatleasta5GBupload.)Limits:Candownload50torrentsaday.Canupload.", + "site_id": 81, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 59, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.851018", + "updated_at": "2023-01-30 14:59:31.765084", "level_id": 0, "level": "V.I.P.", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Description: Donator / Distinguished member / Retired Staff. Limits:Can download 100 torrents a day. Can upload.", - "site_id": "https://exoticaz.to/" + "rights": "Description: Donator/Distinguishedmember/RetiredStaff.Limits:Candownload100torrentsaday.Canupload.", + "site_id": 81, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 60, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.854216", + "updated_at": "2023-01-30 14:59:31.768077", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", - "site_id": "https://gamegamept.cn/" + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 61, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.857385", + "updated_at": "2023-01-30 14:59:31.771290", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 50000, "ratio": 1.5, "torrents": 0, - "rights": "得到一个邀情名额:可以直接发布种子:可以查看NF0文:可以查看用户列表:可以请求续种,可以发送,可以查看排行榜:可以查看其它用户的种子历史(如果用户隐私等织\n未设置为”强”); 可以删除自己上传的字幕。", - "site_id": "https://gamegamept.cn/" + "rights": "得到一个邀情名额:可以直接发布种子:可以查看NF0文:可以查看用户列表:可以请求续种,可以发送,可以查看排行榜:可以查看其它用户的种子历史(如果用户隐私等织\n未设置为”强”);可以删除自己上传的字幕。", + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 62, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.860437", + "updated_at": "2023-01-30 14:59:31.774271", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 150000, "ratio": 2, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://gamegamept.cn/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 63, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.863666", + "updated_at": "2023-01-30 14:59:31.777597", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 300000, "ratio": 2.5, "torrents": 0, "rights": "得到两个邀请名额:可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://gamegamept.cn/" + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 64, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.866872", + "updated_at": "2023-01-30 14:59:31.780716", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 500000, "ratio": 3, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://gamegamept.cn/" + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 65, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.870284", + "updated_at": "2023-01-30 14:59:31.783792", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 900000, "ratio": 3.5, "torrents": 0, "rights": "得到一个邀请名额:可以查看其它用户的评论、帖子历史。", - "site_id": "https://gamegamept.cn/" + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 66, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.873514", + "updated_at": "2023-01-30 14:59:31.786836", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1500000, "ratio": 4, "torrents": 0, - "rights": "可以更新过期的外部信息; 可以查看Extreme User论坛,Extreme User及以上用户会永远保留账号。", - "site_id": "https://gamegamept.cn/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛,ExtremeUser及以上用户会永远保留账号。", + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 67, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.876735", + "updated_at": "2023-01-30 14:59:31.789871", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 2200000, "ratio": 4.5, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://gamegamept.cn/" + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 68, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.879882", + "updated_at": "2023-01-30 14:59:31.793103", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 3000000, "ratio": 5, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://gamegamept.cn/" + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 69, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.883296", + "updated_at": "2023-01-30 14:59:31.796128", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://gamegamept.cn/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 63, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 70, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.886399", + "updated_at": "2023-01-30 14:59:31.799381", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。处于熟悉网站规则及常见问题的阶段。", - "site_id": "https://www.hdarea.co/" + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 71, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.889795", + "updated_at": "2023-01-30 14:59:31.802396", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;;可以请求续种; 可以发送邀请(开放邀请权限时); 可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.hdarea.co/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;;可以请求续种;可以发送邀请(开放邀请权限时);可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 72, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.892799", + "updated_at": "2023-01-30 14:59:31.805711", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "权限同上。", - "site_id": "https://www.hdarea.co/" + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 73, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.896078", + "updated_at": "2023-01-30 14:59:31.808741", "level_id": 4, "level": "CrazyUser", "days": 10, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://www.hdarea.co/" + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 74, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.899266", + "updated_at": "2023-01-30 14:59:31.812355", "level_id": 5, "level": "InsaneUser", "days": 12, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "可以查看普通日志。Insane User及以上用户封存账号后不会被删除。", - "site_id": "https://www.hdarea.co/" + "rights": "可以查看普通日志。InsaneUser及以上用户封存账号后不会被删除。", + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 75, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.902605", + "updated_at": "2023-01-30 14:59:31.815617", "level_id": 6, "level": "VeteranUser", "days": 20, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://www.hdarea.co/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 76, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.905671", + "updated_at": "2023-01-30 14:59:31.818877", "level_id": 7, "level": "ExtremeUser", "days": 25, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://www.hdarea.co/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 77, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.908752", + "updated_at": "2023-01-30 14:59:31.822004", "level_id": 8, "level": "UltimateUser", "days": 30, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.hdarea.co/" + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 78, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.912166", + "updated_at": "2023-01-30 14:59:31.824909", "level_id": 9, "level": "NexusMaster", "days": 40, "uploaded": "0", "downloaded": "10TB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://www.hdarea.co/" + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 79, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.915201", + "updated_at": "2023-01-30 14:59:31.828227", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.hdarea.co/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 5, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 80, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.918569", + "updated_at": "2023-01-30 14:59:31.831298", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://hdvideo.one/" + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 81, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.921736", + "updated_at": "2023-01-30 14:59:31.834693", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "128GB", - "bonus": 0, "score": 60480, "ratio": 2, "torrents": 0, - "rights": "到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://hdvideo.one/" + "rights": "到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 82, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.924839", + "updated_at": "2023-01-30 14:59:31.837686", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "256GB", - "bonus": 0, "score": 137088, "ratio": 2.5, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://hdvideo.one/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 83, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.927907", + "updated_at": "2023-01-30 14:59:31.840976", "level_id": 4, "level": "CrazyUser", "days": 12, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 262080, "ratio": 3, "torrents": 0, - "rights": "\n可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hdvideo.one/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 84, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.930999", + "updated_at": "2023-01-30 14:59:31.843982", "level_id": 5, "level": "InsaneUser", "days": 18, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 453600, "ratio": 3.5, "torrents": 0, - "rights": " 得到两个邀请名额;可以查看普通日志。", - "site_id": "https://hdvideo.one/" + "rights": "得到两个邀请名额;可以查看普通日志。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 85, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.934012", + "updated_at": "2023-01-30 14:59:31.847264", "level_id": 6, "level": "VeteranUser", "days": 24, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 604800, "ratio": 0, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://hdvideo.one/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 86, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.937132", + "updated_at": "2023-01-30 14:59:31.850215", "level_id": 7, "level": "ExtremeUser", "days": 32, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 806400, "ratio": 0, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://hdvideo.one/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 87, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.940181", + "updated_at": "2023-01-30 14:59:31.853545", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 1008000, "ratio": 0, "torrents": 0, "rights": "得到三个邀请得到三个邀请名额。。", - "site_id": "https://hdvideo.one/" + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 88, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.943201", + "updated_at": "2023-01-30 14:59:31.856761", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 1310400, "ratio": 0, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://hdvideo.one/" + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 89, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.946465", + "updated_at": "2023-01-30 14:59:31.860300", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和 Nexus Master 拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdvideo.one/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 37, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 90, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.949461", + "updated_at": "2023-01-30 14:59:31.863771", "level_id": 1, "level": "天使", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新手上路。可以直接发布种子;可以使用 RSS。", - "site_id": "https://hdcity.city/" + "rights": "新手上路。可以直接发布种子;可以使用RSS。", + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 91, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.952631", + "updated_at": "2023-01-30 14:59:31.866941", "level_id": 2, "level": "大天使", "days": 4, "uploaded": "50GB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, - "rights": "可以请求续种; 可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\")。", - "site_id": "https://hdcity.city/" + "rights": "可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\")。", + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 92, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.955594", + "updated_at": "2023-01-30 14:59:31.870437", "level_id": 3, "level": "权天使", "days": 8, "uploaded": "150GB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1.1, "torrents": 0, - "rights": "权天使(Elite User)及以上等级封存账号后不会被删除。", - "site_id": "https://hdcity.city/" + "rights": "权天使(EliteUser)及以上等级封存账号后不会被删除。", + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 93, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.958700", + "updated_at": "2023-01-30 14:59:31.873813", "level_id": 4, "level": "能天使", "days": 12, "uploaded": "500GB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, "rights": "可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://hdcity.city/" + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 94, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.961674", + "updated_at": "2023-01-30 14:59:31.877382", "level_id": 5, "level": "力天使", "days": 16, "uploaded": "1TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hdcity.city/" + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 95, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.964629", + "updated_at": "2023-01-30 14:59:31.880792", "level_id": 6, "level": "主天使", "days": 24, "uploaded": "5TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "主天使(Veteran User)及以上市民会永远保留账号。", - "site_id": "https://hdcity.city/" + "rights": "主天使(VeteranUser)及以上市民会永远保留账号。", + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 96, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.967622", + "updated_at": "2023-01-30 14:59:31.884250", "level_id": 7, "level": "座天使", "days": 36, "uploaded": "10TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 2.6, "torrents": 0, "rights": "无", - "site_id": "https://hdcity.city/" + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 97, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.970556", + "updated_at": "2023-01-30 14:59:31.887433", "level_id": 8, "level": "智天使", "days": 72, "uploaded": "20TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 2.8, "torrents": 0, "rights": "比较牛逼的等级。", - "site_id": "https://hdcity.city/" + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 98, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.973859", + "updated_at": "2023-01-30 14:59:31.890815", "level_id": 9, "level": "炽天使", "days": 100, "uploaded": "40TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, "rights": "最牛逼的市民,或特殊任务分配。", - "site_id": "https://hdcity.city/" + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 99, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.976704", + "updated_at": "2023-01-30 14:59:31.894255", "level_id": 0, "level": "壕", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "管理员分配,捐助的市民,或自行以魅力值兑换获得。免除自动降级无视分享率。", - "site_id": "https://hdcity.city/" + "site_id": 36, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 100, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.979768", + "updated_at": "2023-01-30 14:59:31.897731", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://www.hddolby.com/" + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 101, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.982595", + "updated_at": "2023-01-30 14:59:31.900924", "level_id": 2, "level": "PowerUser", "days": 2, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.hddolby.com/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 102, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.985597", + "updated_at": "2023-01-30 14:59:31.904261", "level_id": 3, "level": "EliteUser", "days": 4, "uploaded": "0", "downloaded": "2560GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "\nElite User 及以上用户封存账号后不会被删除。", - "site_id": "https://www.hddolby.com/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 103, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.988569", + "updated_at": "2023-01-30 14:59:31.907569", "level_id": 4, "level": "CrazyUser", "days": 8, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://www.hddolby.com/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 104, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.991405", + "updated_at": "2023-01-30 14:59:31.911087", "level_id": 5, "level": "InsaneUser", "days": 12, "uploaded": "0", "downloaded": "768GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。", - "site_id": "https://www.hddolby.com/" + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 105, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.994445", + "updated_at": "2023-01-30 14:59:31.914428", "level_id": 6, "level": "VeteranUser", "days": 16, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "Extreme User及以上用户会永远保留账号。", - "site_id": "https://www.hddolby.com/" + "rights": "ExtremeUser及以上用户会永远保留账号。", + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 106, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:35.997463", + "updated_at": "2023-01-30 14:59:31.917921", "level_id": 7, "level": "ExtremeUser", "days": 20, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, "rights": "无", - "site_id": "https://www.hddolby.com/" + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 107, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.000610", + "updated_at": "2023-01-30 14:59:31.921128", "level_id": 8, "level": "UltimateUser", "days": 24, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, "rights": "无", - "site_id": "https://www.hddolby.com/" + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 108, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.003460", + "updated_at": "2023-01-30 14:59:31.924550", "level_id": 9, "level": "NexusMaster", "days": 48, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, "rights": "无", - "site_id": "https://www.hddolby.com/" + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 109, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.006482", + "updated_at": "2023-01-30 14:59:31.928049", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.hddolby.com/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 25, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 110, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.009490", + "updated_at": "2023-01-30 14:59:31.931481", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", - "site_id": "https://www.icc2022.com/" + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 111, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.012527", + "updated_at": "2023-01-30 14:59:31.934751", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, "rights": "得到一个邀请名额:可以直接发布种子。", - "site_id": "https://www.icc2022.com/" + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 112, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.015710", + "updated_at": "2023-01-30 14:59:31.938478", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "可以查看NF0文档;可以查看用户列表:可以请求续种,可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为”强”); 可以删除自己上传的字幕。Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://www.icc2022.com/" + "rights": "可以查看NF0文档;可以查看用户列表:可以请求续种,可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为”强”);可以删除自己上传的字幕。EliteUser及以上用户封存账号后不会被删除。", + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 113, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.018539", + "updated_at": "2023-01-30 14:59:31.941848", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额:可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://www.icc2022.com/" + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 114, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.021862", + "updated_at": "2023-01-30 14:59:31.945283", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://www.icc2022.com/" + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 115, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.025056", + "updated_at": "2023-01-30 14:59:31.948620", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额:可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://www.icc2022.com/" + "rights": "得到三个邀请名额:可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 116, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.028319", + "updated_at": "2023-01-30 14:59:31.951958", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新讨期的外部信息; 可以查看Extreme User论坛。", - "site_id": "https://www.icc2022.com/" + "rights": "可以更新讨期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 117, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.031341", + "updated_at": "2023-01-30 14:59:31.955104", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.icc2022.com/" + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 118, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.034453", + "updated_at": "2023-01-30 14:59:31.958416", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://www.icc2022.com/" + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 119, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.037691", + "updated_at": "2023-01-30 14:59:31.961555", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级自定义等级。", - "site_id": "https://www.icc2022.com/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级自定义等级。", + "site_id": 69, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 120, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.040839", + "updated_at": "2023-01-30 14:59:31.964819", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别;可以在做种下载/发布的时候选择匿名模式。", - "site_id": "https://kamept.com/" + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 121, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.044107", + "updated_at": "2023-01-30 14:59:31.968003", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, "rights": "可以直发种子,可以查看NFO文档:以查看用户列表,可以请求续种;可以发送邀请;可以查看排行榜;可以查看其他用户的种子历史(如果用户隐私等级未设置为“强”);可以进入论坛“PT交流区”版块;可以删除自己上传的字幕。", - "site_id": "https://kamept.com/" + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 122, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.047153", + "updated_at": "2023-01-30 14:59:31.971138", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://kamept.com/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 123, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.050473", + "updated_at": "2023-01-30 14:59:31.974428", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, "rights": "无", - "site_id": "https://kamept.com/" + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 124, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.053512", + "updated_at": "2023-01-30 14:59:31.977486", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://kamept.com/" + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 125, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.056833", + "updated_at": "2023-01-30 14:59:31.980910", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, - "rights": "得到两个邀请名额: 可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://kamept.com/" + "rights": "得到两个邀请名额:可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 126, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.059886", + "updated_at": "2023-01-30 14:59:31.984074", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 600000, "ratio": 3.55, "torrents": 0, - "rights": "得到两个邀请名额;可以更新过期的外部信息; 可以查看Extreme User论坛。", - "site_id": "https://kamept.com/" + "rights": "得到两个邀请名额;可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 127, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.063245", + "updated_at": "2023-01-30 14:59:31.987424", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 800000, "ratio": 4.05, "torrents": 0, "rights": "得到五人邀请名额。", - "site_id": "https://kamept.com/" + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 128, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.066406", + "updated_at": "2023-01-30 14:59:31.990600", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://kamept.com/" + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 129, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.069629", + "updated_at": "2023-01-30 14:59:31.993891", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://kamept.com/" + "rights": "NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 53, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 130, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.072764", + "updated_at": "2023-01-30 14:59:31.997078", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "可以發表候選種子。", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 131, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.075890", + "updated_at": "2023-01-30 14:59:32.000403", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "可以使用匿名發表候選種子。可以上傳字幕。升級至捕頭及以上,通過候選10個種子之後,亦可以直接發佈種子。(魔力值加成:+1%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 132, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.079269", + "updated_at": "2023-01-30 14:59:32.003597", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "可以發送邀請。可以管理自己上傳的字幕。可以檢視別人的下載紀錄。(當對方的隱私權設定不為強才會生效)可以使用個性條。(魔力值加成:+2%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 133, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.082588", + "updated_at": "2023-01-30 14:59:32.007012", "level_id": 4, "level": "CrazyUser", "days": 12, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, "rights": "(魔力值加成:+3%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 134, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.085776", + "updated_at": "2023-01-30 14:59:32.010046", "level_id": 5, "level": "InsaneUser", "days": 16, "uploaded": "0", "downloaded": "800GB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, "rights": "可以檢視排行榜。(魔力值加成:+4%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 135, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.088865", + "updated_at": "2023-01-30 14:59:32.013206", "level_id": 6, "level": "VeteranUser", "days": 20, "uploaded": "0", "downloaded": "1000GB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "(魔力值加成:+5%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 136, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.092103", + "updated_at": "2023-01-30 14:59:32.016554", "level_id": 7, "level": "ExtremeUser", "days": 24, "uploaded": "0", "downloaded": "2000GB", - "bonus": 0, "score": 0, "ratio": 7, "torrents": 0, "rights": "(魔力值加成:+6%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 137, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.095230", + "updated_at": "2023-01-30 14:59:32.019471", "level_id": 8, "level": "UltimateUser", "days": 28, "uploaded": "0", "downloaded": "2500GB", - "bonus": 0, "score": 0, "ratio": 8, "torrents": 0, "rights": "(魔力值加成:+7%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 138, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.098553", + "updated_at": "2023-01-30 14:59:32.022492", "level_id": 9, "level": "NexusMaster", "days": 32, "uploaded": "0", "downloaded": "3000GB", - "bonus": 0, "score": 0, "ratio": 9, "torrents": 0, "rights": "(魔力值加成:+8%)", - "site_id": "https://kp.m-team.cc/" + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 139, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.101556", + "updated_at": "2023-01-30 14:59:32.025816", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "擁有與 大臣/Nexus Master 相同的權限。下載任何種子,下載量皆不計入分享率。(魔力值加成:+20%)", - "site_id": "https://kp.m-team.cc/" + "rights": "擁有與大臣/NexusMaster相同的權限。下載任何種子,下載量皆不計入分享率。(魔力值加成:+20%)", + "site_id": 27, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 140, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.104913", + "updated_at": "2023-01-30 14:59:32.028895", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用戶的默認級別;可以在每周六的12:00至每周日的23:59之间上传种子。", - "site_id": "https://oldtoons.world/" + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 141, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.107926", + "updated_at": "2023-01-30 14:59:32.032169", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 80000, "ratio": 2, "torrents": 0, "rights": "得到一个邀请名额。可以上传种子,查看NFO文件,查看用户列表,可以请求续种,可以发送邀请,可以访问高级用户和外部论坛,可以查看排行榜前10名,查看其他用户的种子历史(如果用户的隐私级别未设置为“强”),可以删除自己上传的字幕。", - "site_id": "https://oldtoons.world/" + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 142, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.111253", + "updated_at": "2023-01-30 14:59:32.035201", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 150000, "ratio": 3, "torrents": 0, - "rights": "Elite User或更高级别的用户封存账户后不会被删除。", - "site_id": "https://oldtoons.world/" + "rights": "EliteUser或更高级别的用户封存账户后不会被删除。", + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 143, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.114519", + "updated_at": "2023-01-30 14:59:32.038427", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "800GB", - "bonus": 0, "score": 300000, "ratio": 4, "torrents": 0, "rights": "得到两个邀请名额。可以在做種/下載/發布的時候選擇匿名模式。", - "site_id": "https://oldtoons.world/" + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 144, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.117611", + "updated_at": "2023-01-30 14:59:32.041562", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "999GB", - "bonus": 0, "score": 650000, "ratio": 5, "torrents": 0, "rights": "可以查看常规日志。", - "site_id": "https://oldtoons.world/" + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 145, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.120876", + "updated_at": "2023-01-30 14:59:32.044777", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "1500GB", - "bonus": 0, "score": 1000000, "ratio": 6, "torrents": 0, - "rights": "得到三个邀请名额。可以查看其他用户的评论和论坛帖子的历史记录。Veteran User或以上账号将永远不会被删除,无论是否封存。", - "site_id": "https://oldtoons.world/" + "rights": "得到三个邀请名额。可以查看其他用户的评论和论坛帖子的历史记录。VeteranUser或以上账号将永远不会被删除,无论是否封存。", + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 146, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.123959", + "updated_at": "2023-01-30 14:59:32.047988", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 2200000, "ratio": 7, "torrents": 0, - "rights": "可以更新过期的外部信息; 可以查看Extreme User论坛。", - "site_id": "https://oldtoons.world/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 147, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.127209", + "updated_at": "2023-01-30 14:59:32.051002", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 3500000, "ratio": 8, "torrents": 0, "rights": "获得五个邀请名额。", - "site_id": "https://oldtoons.world/" + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 148, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.130270", + "updated_at": "2023-01-30 14:59:32.054359", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 5000000, "ratio": 10, "torrents": 0, "rights": "获得十个邀请名额。", - "site_id": "https://oldtoons.world/" + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 149, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.133462", + "updated_at": "2023-01-30 14:59:32.057435", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://oldtoons.world/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 87, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 150, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.136413", + "updated_at": "2023-01-30 14:59:32.060760", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用戶的默認級別;可以查看NFO/LOG文檔。", - "site_id": "https://www.open.cd/" + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 151, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.139533", + "updated_at": "2023-01-30 14:59:32.063779", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "20GB", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 5, - "rights": "得到一個邀請名額;可以請求續種; 可以發送邀請; 可以查看排行榜;可以查看其它用戶的種子歷史(如果用戶隱私等級未設置為\"強\" ); 可以刪除自己上傳的字幕。", - "site_id": "https://www.open.cd/" + "rights": "得到一個邀請名額;可以請求續種;可以發送邀請;可以查看排行榜;可以查看其它用戶的種子歷史(如果用戶隱私等級未設置為\"強\");可以刪除自己上傳的字幕。", + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 152, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.142504", + "updated_at": "2023-01-30 14:59:32.067211", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "60GB", - "bonus": 20, "score": 0, "ratio": 2, "torrents": 20, - "rights": "得到兩個邀請名額;貴人-正六品(Elite User)及以上用戶封存賬號後規定時間內不會被刪除;發布三個種子後無需經過候選可直接發布種子。", - "site_id": "https://www.open.cd/" + "rights": "得到兩個邀請名額;貴人-正六品(EliteUser)及以上用戶封存賬號後規定時間內不會被刪除;發布三個種子後無需經過候選可直接發布種子。", + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 20 }, { "id": 153, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.145556", + "updated_at": "2023-01-30 14:59:32.070548", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "200GB", - "bonus": 50, "score": 0, "ratio": 2.5, "torrents": 50, "rights": "得到三個邀請名額;可以在做種/下載/發布的時候選擇匿名模式。", - "site_id": "https://www.open.cd/" + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 50 }, { "id": 154, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.148663", + "updated_at": "2023-01-30 14:59:32.073968", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "400GB", - "bonus": 100, "score": 0, "ratio": 3, "torrents": 100, "rights": "得到四個邀請名額;可以查看普通日誌。", - "site_id": "https://www.open.cd/" + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 100 }, { "id": 155, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.151595", + "updated_at": "2023-01-30 14:59:32.077235", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "600GB", - "bonus": 200, "score": 0, "ratio": 3.5, "torrents": 200, - "rights": "得到五個邀請名額;可以查看用戶列表,可以查看其它用戶的評論、帖子歷史。 貴嬪-正三品(Veteran User)及以上用戶會永遠保留賬號。", - "site_id": "https://www.open.cd/" + "rights": "得到五個邀請名額;可以查看用戶列表,可以查看其它用戶的評論、帖子歷史。貴嬪-正三品(VeteranUser)及以上用戶會永遠保留賬號。", + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 200 }, { "id": 156, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.154682", + "updated_at": "2023-01-30 14:59:32.080870", "level_id": 7, "level": "ExtremeUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 300, "score": 0, "ratio": 4, "torrents": 300, "rights": "得到六個邀請名額;可以更新過期的外部信息。", - "site_id": "https://www.open.cd/" + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 300 }, { "id": 157, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.157510", + "updated_at": "2023-01-30 14:59:32.084284", "level_id": 8, "level": "UltimateUser", "days": 30, "uploaded": "0", "downloaded": "2TB", - "bonus": 450, "score": 0, "ratio": 4.5, "torrents": 450, "rights": "得到七個邀請名額;查看種子文件的結構。", - "site_id": "https://www.open.cd/" + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 450 }, { "id": 158, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.160744", + "updated_at": "2023-01-30 14:59:32.087872", "level_id": 9, "level": "NexusMaster", "days": 30, "uploaded": "0", "downloaded": "3TB", - "bonus": 600, "score": 0, "ratio": 5, "torrents": 600, "rights": "得到十個邀請名額。", - "site_id": "https://www.open.cd/" + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 600 }, { "id": 159, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.163634", + "updated_at": "2023-01-30 14:59:32.091207", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和皇后(Nexus Master)擁有相同權限並被認為是精英成員。免除自動降級。", - "site_id": "https://www.open.cd/" + "rights": "和皇后(NexusMaster)擁有相同權限並被認為是精英成員。免除自動降級。", + "site_id": 48, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 160, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.166726", + "updated_at": "2023-01-30 14:59:32.094514", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://pt.itzmx.com/" + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 161, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.169727", + "updated_at": "2023-01-30 14:59:32.097737", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.itzmx.com/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 162, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.172793", + "updated_at": "2023-01-30 14:59:32.101005", "level_id": 3, "level": "EliteUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://pt.itzmx.com/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 163, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.175883", + "updated_at": "2023-01-30 14:59:32.104600", "level_id": 4, "level": "CrazyUser", "days": 10, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://pt.itzmx.com/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 164, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.178832", + "updated_at": "2023-01-30 14:59:32.107714", "level_id": 5, "level": "InsaneUser", "days": 10, "uploaded": "0", "downloaded": "800GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, - "rights": "得到 1 个邀请名额;可以查看普通日志。", - "site_id": "https://pt.itzmx.com/" + "rights": "得到1个邀请名额;可以查看普通日志。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 165, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.181939", + "updated_at": "2023-01-30 14:59:32.111021", "level_id": 6, "level": "VeteranUser", "days": 10, "uploaded": "0", "downloaded": "2000GB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "得到 1 个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://pt.itzmx.com/" + "rights": "得到1个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 166, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.184937", + "updated_at": "2023-01-30 14:59:32.114406", "level_id": 7, "level": "ExtremeUser", "days": 52, "uploaded": "0", "downloaded": "8000GB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "得到 1 个邀请名额;可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://pt.itzmx.com/" + "rights": "得到1个邀请名额;可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 167, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.187938", + "updated_at": "2023-01-30 14:59:32.117757", "level_id": 8, "level": "UltimateUser", "days": 104, "uploaded": "0", "downloaded": "12TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, - "rights": "得到 1 个邀请名额。", - "site_id": "https://pt.itzmx.com/" + "rights": "得到1个邀请名额。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 168, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.190724", + "updated_at": "2023-01-30 14:59:32.121076", "level_id": 9, "level": "NexusMaster", "days": 156, "uploaded": "0", "downloaded": "16TB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, - "rights": "得到 1 个邀请名额。", - "site_id": "https://pt.itzmx.com/" + "rights": "得到1个邀请名额。", + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 169, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.193896", + "updated_at": "2023-01-30 14:59:32.124359", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。", - "site_id": "https://pt.itzmx.com/" + "site_id": 60, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 170, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.197020", + "updated_at": "2023-01-30 14:59:32.127893", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别", - "site_id": "https://filelist.io/" + "site_id": 84, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 171, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.199941", + "updated_at": "2023-01-30 14:59:32.131331", "level_id": 2, "level": "PowerUser", "days": 28, "uploaded": "0", "downloaded": "50", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, "rights": "它可以下载大于1MB的DOX文件。该类有权申请上传者身份。", - "site_id": "https://filelist.io/" + "site_id": 84, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 172, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.203023", + "updated_at": "2023-01-30 14:59:32.135098", "level_id": 3, "level": "Addict", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "此类有权请求自定义标题。 此类有权提出请求。", - "site_id": "https://filelist.io/" + "rights": "此类有权请求自定义标题。此类有权提出请求。", + "site_id": 84, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 173, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.205825", + "updated_at": "2023-01-30 14:59:32.138634", "level_id": 4, "level": "Elite", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "普通用户可以达到的最高等级。此类授予您为其他用户提供声誉的权利。", - "site_id": "https://filelist.io/" + "site_id": 84, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 174, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.209165", + "updated_at": "2023-01-30 14:59:32.141953", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "无论下载如何,该类的最低分享率始终等于 2,并且被排除在HR规则之外。可以自定义头衔。", - "site_id": "https://filelist.io/" + "rights": "无论下载如何,该类的最低分享率始终等于2,并且被排除在HR规则之外。可以自定义头衔。", + "site_id": 84, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 175, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.212158", + "updated_at": "2023-01-30 14:59:32.145388", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别", - "site_id": "https://et8.org/" + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 176, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.215215", + "updated_at": "2023-01-30 14:59:32.148877", "level_id": 2, "level": "PowerUser", "days": 2, "uploaded": "0", "downloaded": "64GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "可以上传种子; 可以删除自己上传的字幕; 可以在做种/下载/上传的时候选择匿名模式.\n", - "site_id": "https://et8.org/" + "rights": "可以上传种子;可以删除自己上传的字幕;可以在做种/下载/上传的时候选择匿名模式.", + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 177, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.218309", + "updated_at": "2023-01-30 14:59:32.152192", "level_id": 3, "level": "EliteUser", "days": 6, "uploaded": "0", "downloaded": "128GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "购买邀请; 可以查看邀请论坛; 可以查看NFO文档; 可以更新外部信息; 可以请求续种; 可以使用个性条.", - "site_id": "https://et8.org/" + "rights": "购买邀请;可以查看邀请论坛;可以查看NFO文档;可以更新外部信息;可以请求续种;可以使用个性条.", + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 178, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.221558", + "updated_at": "2023-01-30 14:59:32.155723", "level_id": 4, "level": "CrazyUser", "days": 14, "uploaded": "0", "downloaded": "256GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\").", - "site_id": "https://et8.org/" + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 179, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.224604", + "updated_at": "2023-01-30 14:59:32.159326", "level_id": 5, "level": "InsaneUser", "days": 26, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "中校及以上用户Park后不会被删除帐号.", - "site_id": "https://et8.org/" + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 180, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.227576", + "updated_at": "2023-01-30 14:59:32.162834", "level_id": 6, "level": "VeteranUser", "days": 38, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "可以发送邀请; 上校及以上用户会永远保留账号.", - "site_id": "https://et8.org/" + "rights": "可以发送邀请;上校及以上用户会永远保留账号.", + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 181, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.230784", + "updated_at": "2023-01-30 14:59:32.166494", "level_id": 7, "level": "ExtremeUser", "days": 54, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, "rights": "可以查看种子文件结构.", - "site_id": "https://et8.org/" + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 182, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.233921", + "updated_at": "2023-01-30 14:59:32.169846", "level_id": 8, "level": "UltimateUser", "days": 70, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史;得到五个邀请名额.", - "site_id": "https://et8.org/" + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 183, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.237169", + "updated_at": "2023-01-30 14:59:32.173408", "level_id": 9, "level": "NexusMaster", "days": 88, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://et8.org/" + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 184, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.240283", + "updated_at": "2023-01-30 14:59:32.176631", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和上将(Nexus Master)拥有相同权限并被认为是精英成员, 免除自动降级; 可以查看用户列表.", - "site_id": "https://et8.org/" + "rights": "和上将(NexusMaster)拥有相同权限并被认为是精英成员,免除自动降级;可以查看用户列表.", + "site_id": 67, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 185, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.243525", + "updated_at": "2023-01-30 14:59:32.179948", "level_id": 1, "level": "Byte", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "此为入站最初始等级,接受新人考核制。", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 186, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.246643", + "updated_at": "2023-01-30 14:59:32.183385", "level_id": 2, "level": "KiloByte", "days": 5, "uploaded": "0", "downloaded": "60GB", - "bonus": 0, "score": 0, "ratio": 1.1, "torrents": 0, - "rights": "此等级才为正式会员,可申请种子候选。此等级及以下会员 12 周不活动将被系统自动清除。", - "site_id": "https://totheglory.im/" + "rights": "此等级才为正式会员,可申请种子候选。此等级及以下会员12周不活动将被系统自动清除。", + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 187, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.249907", + "updated_at": "2023-01-30 14:59:32.186954", "level_id": 3, "level": "MegaByte", "days": 8, "uploaded": "0", "downloaded": "150GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "此等级及以上会员 12 周不活动将被系统自动清除。", - "site_id": "https://totheglory.im/" + "rights": "此等级及以上会员12周不活动将被系统自动清除。", + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 188, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.252984", + "updated_at": "2023-01-30 14:59:32.190315", "level_id": 4, "level": "GigaByte", "days": 8, "uploaded": "0", "downloaded": "250GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "此等级可挂起,可进入积分商城(内测中,尽请期待)。", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 189, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.256013", + "updated_at": "2023-01-30 14:59:32.193821", "level_id": 5, "level": "TeraByte", "days": 16, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, "rights": "此等级可用积分购买邀请,并可浏览全站(新加游戏分类页),可以访问邀请区。", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 190, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.259291", + "updated_at": "2023-01-30 14:59:32.197088", "level_id": 6, "level": "PetaByte", "days": 24, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "此等级可直接发布种子。此等级及以下会员挂起超过 180 天将被系统自动清除。", - "site_id": "https://totheglory.im/" + "rights": "此等级可直接发布种子。此等级及以下会员挂起超过180天将被系统自动清除。", + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 191, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.262334", + "updated_at": "2023-01-30 14:59:32.200465", "level_id": 7, "level": "ExaByte", "days": 24, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "此等级自行挂起账号后不会被清除。", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 192, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.265580", + "updated_at": "2023-01-30 14:59:32.203735", "level_id": 8, "level": "ZettaByte", "days": 24, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "此等级免除流量考核。(至于是年中年终两次还是只年终,什么时候开始目前还尚未定论)", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 193, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.268749", + "updated_at": "2023-01-30 14:59:32.207189", "level_id": 9, "level": "YottaByte", "days": 24, "uploaded": "0", "downloaded": "2.5TB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "此等级可查看排行榜。此等级及以下会员 12 周不活动将被系统自动清除。", - "site_id": "https://totheglory.im/" + "rights": "此等级可查看排行榜。此等级及以下会员12周不活动将被系统自动清除。", + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 194, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.272221", + "updated_at": "2023-01-30 14:59:32.210710", "level_id": 10, "level": "BrontoByte", "days": 32, "uploaded": "0", "downloaded": "3.5TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, "rights": "此等级及以上等级用户会永远保留账号。", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 195, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.275445", + "updated_at": "2023-01-30 14:59:32.213915", "level_id": 11, "level": "NonaByte", "days": 48, "uploaded": "50TB", "downloaded": "5TB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "无", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 196, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.278888", + "updated_at": "2023-01-30 14:59:32.217291", "level_id": 12, "level": "DoggaByte", "days": 48, "uploaded": "100TB", "downloaded": "10TB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "无", - "site_id": "https://totheglory.im/" + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 197, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.282041", + "updated_at": "2023-01-30 14:59:32.220462", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "为 TTG 做出特殊重大贡献的用户或合作者等。只计算上传量,不计算下载量。", - "site_id": "https://totheglory.im/" + "rights": "为TTG做出特殊重大贡献的用户或合作者等。只计算上传量,不计算下载量。", + "site_id": 40, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 198, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.285774", + "updated_at": "2023-01-30 14:59:32.223864", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "http://pt.tu88.men/" + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 199, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.288872", + "updated_at": "2023-01-30 14:59:32.226988", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "20GB", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "http://pt.tu88.men/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 200, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.292033", + "updated_at": "2023-01-30 14:59:32.230414", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "60GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "http://pt.tu88.men/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 201, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.295217", + "updated_at": "2023-01-30 14:59:32.233487", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "http://pt.tu88.men/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 202, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.298464", + "updated_at": "2023-01-30 14:59:32.236771", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "http://pt.tu88.men/" + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 203, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.301658", + "updated_at": "2023-01-30 14:59:32.240051", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "600GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "http://pt.tu88.men/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 204, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.304836", + "updated_at": "2023-01-30 14:59:32.243311", "level_id": 7, "level": "ExtremeUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "http://pt.tu88.men/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 205, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.308156", + "updated_at": "2023-01-30 14:59:32.246466", "level_id": 8, "level": "UltimateUser", "days": 30, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "http://pt.tu88.men/" + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 206, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.311346", + "updated_at": "2023-01-30 14:59:32.249627", "level_id": 9, "level": "NexusMaster", "days": 30, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "http://pt.tu88.men/" + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 207, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.314674", + "updated_at": "2023-01-30 14:59:32.252910", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和 Nexus Master 拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "http://pt.tu88.men/" + "rights": "和 NexusMaster 拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 59, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 208, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.317804", + "updated_at": "2023-01-30 14:59:32.256090", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认等级 ; 查看种子结构;查看其它用户的评论、帖子历史;查看排行榜;查看其它用户的历史种子列表;上传字幕;删除自己上传的字幕;提交候选.", - "site_id": "https://u2.dmhy.org/" + "rights": "新用户的默认等级 ;查看种子结构;查看其它用户的评论、帖子历史;查看排行榜;查看其它用户的历史种子列表;上传字幕;删除自己上传的字幕;提交候选.", + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 209, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.321234", + "updated_at": "2023-01-30 14:59:32.259350", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, "rights": "查看会员列表;请求补种;查看普通日志;使用流量信息条.", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 210, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.324444", + "updated_at": "2023-01-30 14:59:32.262402", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, "rights": "无", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 211, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.327986", + "updated_at": "2023-01-30 14:59:32.265680", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "无", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 212, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.331253", + "updated_at": "2023-01-30 14:59:32.268715", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "无", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 213, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.334516", + "updated_at": "2023-01-30 14:59:32.272185", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, "rights": "使用邀请名额;无可用邀请时,购买邀请.", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 214, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.337464", + "updated_at": "2023-01-30 14:59:32.275421", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, "rights": "无", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 215, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.340676", + "updated_at": "2023-01-30 14:59:32.278957", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1536GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "账号封存后永久保留.", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 216, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.343603", + "updated_at": "2023-01-30 14:59:32.282322", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3072GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "账号永久保留.", - "site_id": "https://u2.dmhy.org/" + "site_id": 39, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 217, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.346585", + "updated_at": "2023-01-30 14:59:32.285865", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://ultrahd.net/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 218, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.349729", + "updated_at": "2023-01-30 14:59:32.290029", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://ultrahd.net/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 219, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.352555", + "updated_at": "2023-01-30 14:59:32.293812", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://ultrahd.net/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 220, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.355619", + "updated_at": "2023-01-30 14:59:32.297257", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://ultrahd.net/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 221, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.358541", + "updated_at": "2023-01-30 14:59:32.300842", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://ultrahd.net/" + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 222, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.361523", + "updated_at": "2023-01-30 14:59:32.304370", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://ultrahd.net/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 223, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.364441", + "updated_at": "2023-01-30 14:59:32.307727", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。【可以开启特别区和查看特别区资源】。", - "site_id": "https://ultrahd.net/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。【可以开启特别区和查看特别区资源】。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 224, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.367405", + "updated_at": "2023-01-30 14:59:32.311340", "level_id": 8, "level": "UltimateUser", "days": 35, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://ultrahd.net/" + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 225, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.370515", + "updated_at": "2023-01-30 14:59:32.315016", "level_id": 9, "level": "NexusMaster", "days": 40, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 6.5, "torrents": 0, "rights": "得到两个邀请名额。", - "site_id": "https://ultrahd.net/" + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 226, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.373371", + "updated_at": "2023-01-30 14:59:32.318504", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。和 Nexus Master 拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://ultrahd.net/" + "rights": "由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。和 NexusMaster 拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 58, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 227, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.376436", + "updated_at": "2023-01-30 14:59:32.322285", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "http://uploads.ltd/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 228, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.379332", + "updated_at": "2023-01-30 14:59:32.325931", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "http://uploads.ltd/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 229, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.382350", + "updated_at": "2023-01-30 14:59:32.329493", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "http://uploads.ltd/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 230, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.385215", + "updated_at": "2023-01-30 14:59:32.333225", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "http://uploads.ltd/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 231, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.388146", + "updated_at": "2023-01-30 14:59:32.336735", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "http://uploads.ltd/" + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 232, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.391064", + "updated_at": "2023-01-30 14:59:32.340454", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "http://uploads.ltd/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 233, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.393887", + "updated_at": "2023-01-30 14:59:32.344226", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "http://uploads.ltd/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 234, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.397047", + "updated_at": "2023-01-30 14:59:32.348017", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1536GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "http://uploads.ltd/" + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 235, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.399952", + "updated_at": "2023-01-30 14:59:32.351497", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3072GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "http://uploads.ltd/" + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 236, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.403024", + "updated_at": "2023-01-30 14:59:32.355314", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\n和 Nexus Master 拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "http://uploads.ltd/" + "rights": "和 NexusMaster 拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 76, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 237, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.405815", + "updated_at": "2023-01-30 14:59:32.358863", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://hdzone.me/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 238, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.408723", + "updated_at": "2023-01-30 14:59:32.362724", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "新晋等级用户,权限同上。", - "site_id": "https://hdzone.me/" + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 239, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.411861", + "updated_at": "2023-01-30 14:59:32.366308", "level_id": 3, "level": "EliteUser", "days": 5, "uploaded": "0", "downloaded": "220GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "Elite User 权限同上。", - "site_id": "https://hdzone.me/" + "rights": "EliteUser 权限同上。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 240, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.414871", + "updated_at": "2023-01-30 14:59:32.369975", "level_id": 4, "level": "CrazyUser", "days": 10, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hdzone.me/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 241, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.417968", + "updated_at": "2023-01-30 14:59:32.373623", "level_id": 5, "level": "InsaneUser", "days": 10, "uploaded": "0", "downloaded": "600GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hdzone.me/" + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 242, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.420855", + "updated_at": "2023-01-30 14:59:32.377272", "level_id": 6, "level": "VeteranUser", "days": 10, "uploaded": "0", "downloaded": "900GB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。", - "site_id": "https://hdzone.me/" + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 243, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.423936", + "updated_at": "2023-01-30 14:59:32.380852", "level_id": 7, "level": "ExtremeUser", "days": 10, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://hdzone.me/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 244, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.426735", + "updated_at": "2023-01-30 14:59:32.384317", "level_id": 8, "level": "UltimateUser", "days": 10, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "得到 2 个邀请名额。", - "site_id": "https://hdzone.me/" + "rights": "得到2个邀请名额。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 245, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.429653", + "updated_at": "2023-01-30 14:59:32.387512", "level_id": 9, "level": "NexusMaster", "days": 10, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, - "rights": "得到 3 个邀请名额。账号永久保留。", - "site_id": "https://hdzone.me/" + "rights": "得到3个邀请名额。账号永久保留。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 246, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.432784", + "updated_at": "2023-01-30 14:59:32.390929", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdzone.me/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 9, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 247, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.435567", + "updated_at": "2023-01-30 14:59:32.394077", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://ihdbits.me/" + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 248, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.438633", + "updated_at": "2023-01-30 14:59:32.397537", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 80000, "ratio": 2, "torrents": 0, - "rights": "得到 2 个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://ihdbits.me/" + "rights": "得到2个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 249, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.441918", + "updated_at": "2023-01-30 14:59:32.400690", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "768GB", - "bonus": 0, "score": 120000, "ratio": 3, "torrents": 0, - "rights": "得到 2 个邀请名额,Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://ihdbits.me/" + "rights": "得到2个邀请名额,EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 250, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.445191", + "updated_at": "2023-01-30 14:59:32.404113", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 250000, "ratio": 4, "torrents": 0, - "rights": "得到 2 个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://ihdbits.me/" + "rights": "得到2个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 251, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.448369", + "updated_at": "2023-01-30 14:59:32.407255", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1536GB", - "bonus": 0, "score": 400000, "ratio": 5, "torrents": 0, - "rights": "得到 2 个邀请名额,可以查看普通日志。", - "site_id": "https://ihdbits.me/" + "rights": "得到2个邀请名额,可以查看普通日志。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 252, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.451696", + "updated_at": "2023-01-30 14:59:32.410707", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2048GB", - "bonus": 0, "score": 600000, "ratio": 6, "torrents": 0, - "rights": "得到 2 个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://ihdbits.me/" + "rights": "得到2个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 253, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.454844", + "updated_at": "2023-01-30 14:59:32.413899", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3072GB", - "bonus": 0, "score": 900000, "ratio": 7, "torrents": 0, - "rights": "得到 2 个邀请名额;可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://ihdbits.me/" + "rights": "得到2个邀请名额;可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 254, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.458091", + "updated_at": "2023-01-30 14:59:32.417272", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "8192GB", - "bonus": 0, "score": 1500000, "ratio": 8, "torrents": 0, - "rights": "得到 5 个邀请名额。", - "site_id": "https://ihdbits.me/" + "rights": "得到5个邀请名额。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 255, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.461452", + "updated_at": "2023-01-30 14:59:32.420365", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "16384GB", - "bonus": 0, "score": 2000000, "ratio": 10, "torrents": 0, - "rights": "得到 10 个邀请名额。", - "site_id": "https://ihdbits.me/" + "rights": "得到10个邀请名额。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 256, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.464592", + "updated_at": "2023-01-30 14:59:32.423639", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://ihdbits.me/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 70, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 257, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.467798", + "updated_at": "2023-01-30 14:59:32.426655", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别", - "site_id": "https://iptorrents.com/" + "site_id": 34, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 258, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.470930", + "updated_at": "2023-01-30 14:59:32.429972", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "50GB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "能够请求种子,查看TOP 10,并申请Uploader身份。", - "site_id": "https://iptorrents.com/" + "rights": "能够请求种子,查看TOP10,并申请Uploader身份。", + "site_id": 34, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 259, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.474172", + "updated_at": "2023-01-30 14:59:32.433267", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "与PowerUser相同的特权,并被视为 IPT 的精英会员。不受 H&R(VIP 期间)警告的影响,捐赠后所有 H&R 警告将被删除", - "site_id": "https://iptorrents.com/" + "rights": "与PowerUser相同的特权,并被视为IPT的精英会员。不受H&R(VIP期间)警告的影响,捐赠后所有H&R警告将被删除", + "site_id": 34, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 260, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.477204", + "updated_at": "2023-01-30 14:59:32.436391", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://www.joyhd.net/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 261, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.480445", + "updated_at": "2023-01-30 14:59:32.439614", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.2, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.joyhd.net/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 262, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.483549", + "updated_at": "2023-01-30 14:59:32.442633", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, "rights": "军士及以上用户封存账号后不会被删除;可以发送邀请;可以请求续种。", - "site_id": "https://www.joyhd.net/" + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 263, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.486831", + "updated_at": "2023-01-30 14:59:32.445929", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://www.joyhd.net/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 264, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.489889", + "updated_at": "2023-01-30 14:59:32.448928", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "可以查看普通日志。得到一个邀请名额", - "site_id": "https://www.joyhd.net/" + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 265, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.493162", + "updated_at": "2023-01-30 14:59:32.452180", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "600GB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。副参领及以上用户会永远保留账号。得到二个邀请名额", - "site_id": "https://www.joyhd.net/" + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 266, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.496414", + "updated_at": "2023-01-30 14:59:32.455257", "level_id": 7, "level": "ExtremeUser", "days": 25, "uploaded": "0", "downloaded": "1000GB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, "rights": "可以更新过期的外部信息;得到二个邀请名额", - "site_id": "https://www.joyhd.net/" + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 267, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.499618", + "updated_at": "2023-01-30 14:59:32.458460", "level_id": 8, "level": "UltimateUser", "days": 30, "uploaded": "0", "downloaded": "2000GB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "得到三个邀请名额。", - "site_id": "https://www.joyhd.net/" + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 268, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.503077", + "updated_at": "2023-01-30 14:59:32.461575", "level_id": 9, "level": "NexusMaster", "days": 50, "uploaded": "0", "downloaded": "5000GB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.joyhd.net/" + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 269, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.506210", + "updated_at": "2023-01-30 14:59:32.464817", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。下载种子将不消耗银元(上传量和下载量记算不变)", - "site_id": "https://www.joyhd.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。下载种子将不消耗银元(上传量和下载量记算不变)", + "site_id": 42, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 270, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.509482", + "updated_at": "2023-01-30 14:59:32.467946", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。可以申请友情链接。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 271, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.512640", + "updated_at": "2023-01-30 14:59:32.471025", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 20000, "ratio": 1.1, "torrents": 0, "rights": "可以查看NFO文档;可以请求续种;可以上传字幕或删除自己上传的字幕。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 272, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.515978", + "updated_at": "2023-01-30 14:59:32.474290", "level_id": 3, "level": "EliteUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 50000, "ratio": 1.2, "torrents": 0, "rights": "可以查看用户列表;可以查看排行榜。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 273, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.519029", + "updated_at": "2023-01-30 14:59:32.477480", "level_id": 4, "level": "CrazyUser", "days": 5, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 100000, "ratio": 1.2, "torrents": 0, - "rights": "可以更新过期的外部信息;可以在做种/下载/发布的时候选择匿名模式;可以浏览论坛邀请区。着迷(Crazy User)及以上用户封存账号后不会被删除。", - "site_id": "https://springsunday.net/" + "rights": "可以更新过期的外部信息;可以在做种/下载/发布的时候选择匿名模式;可以浏览论坛邀请区。着迷(CrazyUser)及以上用户封存账号后不会被删除。", + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 274, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.522312", + "updated_at": "2023-01-30 14:59:32.480972", "level_id": 5, "level": "InsaneUser", "days": 5, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 200000, "ratio": 1.2, "torrents": 0, "rights": "可以查看其它用户的种子历史(如果用户隐私等级未设置为“强”)。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 275, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.525344", + "updated_at": "2023-01-30 14:59:32.484514", "level_id": 6, "level": "VeteranUser", "days": 5, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 400000, "ratio": 1.2, "torrents": 0, - "rights": "\n资深(Veteran User)及以上用户会永远保留账号。该等级以上(含)可免除站点常规考核。", - "site_id": "https://springsunday.net/" + "rights": "资深(VeteranUser)及以上用户会永远保留账号。该等级以上(含)可免除站点常规考核。", + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 276, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.528503", + "updated_at": "2023-01-30 14:59:32.488187", "level_id": 7, "level": "ExtremeUser", "days": 5, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 600000, "ratio": 1.5, "torrents": 0, "rights": "得到1个邀请名额。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 277, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.531509", + "updated_at": "2023-01-30 14:59:32.491545", "level_id": 8, "level": "UltimateUser", "days": 5, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 800000, "ratio": 1.5, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 278, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.534819", + "updated_at": "2023-01-30 14:59:32.495190", "level_id": 9, "level": "NexusMaster", "days": 5, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 1000000, "ratio": 1.5, "torrents": 0, "rights": "得到1个邀请名额。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 279, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.537953", + "updated_at": "2023-01-30 14:59:32.498542", "level_id": 10, "level": "NexusGod", "days": 5, "uploaded": "0", "downloaded": "11TB", - "bonus": 0, "score": 2200000, "ratio": 2, "torrents": 0, "rights": "彩色ID特权;可以查看普通日志;可以购买及发送邀请。", - "site_id": "https://springsunday.net/" + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 280, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.541155", + "updated_at": "2023-01-30 14:59:32.502162", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\n不计下载量(实际下载量依然会统计),其他权限和神仙(Nexus God)相同,并被认为是精英成员。贵宾(VIP)及其以上等级免除自动降级。", - "site_id": "https://springsunday.net/" + "rights": "不计下载量(实际下载量依然会统计),其他权限和神仙(Nexus God)相同,并被认为是精英成员。贵宾(VIP)及其以上等级免除自动降级。", + "site_id": 47, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 281, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.544312", + "updated_at": "2023-01-30 14:59:32.505658", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 282, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.547254", + "updated_at": "2023-01-30 14:59:32.509179", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, - "rights": "得到3个邀请名额;可以查看邀请区;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://gainbound.net/" + "rights": "得到3个邀请名额;可以查看邀请区;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 283, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.550414", + "updated_at": "2023-01-30 14:59:32.512733", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, "rights": "得到1个邀请名额,三袋弟子及以上用户封存账号后不会被删除。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 284, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.553331", + "updated_at": "2023-01-30 14:59:32.516542", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, "rights": "得到2个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 285, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.556481", + "updated_at": "2023-01-30 14:59:32.520193", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "得到1个邀请名额,可以查看普通日志。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 286, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.559395", + "updated_at": "2023-01-30 14:59:32.524100", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, "rights": "得到3个邀请名额;可以查看其它用户的评论、帖子历史。六袋长老及以上用户会永远保留账号。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 287, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.562560", + "updated_at": "2023-01-30 14:59:32.528153", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 600000, "ratio": 3.55, "torrents": 0, - "rights": "得到1个邀请名额,可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://gainbound.net/" + "rights": "得到1个邀请名额,可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 288, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.565619", + "updated_at": "2023-01-30 14:59:32.531993", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 800000, "ratio": 4.05, "torrents": 0, "rights": "得到3个邀请名额。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 289, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.568609", + "updated_at": "2023-01-30 14:59:32.535946", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到5个邀请名额。", - "site_id": "https://gainbound.net/" + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 290, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.571756", + "updated_at": "2023-01-30 14:59:32.539511", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://gainbound.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 23, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 291, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.574617", + "updated_at": "2023-01-30 14:59:32.543407", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 292, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.577764", + "updated_at": "2023-01-30 14:59:32.547183", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, - "rights": "得到3个邀请名额;可以查看邀请区;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.hd4fans.org/" + "rights": "得到3个邀请名额;可以查看邀请区;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 293, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.580849", + "updated_at": "2023-01-30 14:59:32.551034", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, "rights": "得到1个邀请名额,三袋弟子及以上用户封存账号后不会被删除。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 294, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.584075", + "updated_at": "2023-01-30 14:59:32.554609", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, "rights": "得到2个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 295, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.587129", + "updated_at": "2023-01-30 14:59:32.558443", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "得到1个邀请名额,可以查看普通日志。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 296, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.590328", + "updated_at": "2023-01-30 14:59:32.562024", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, "rights": "得到3个邀请名额;可以查看其它用户的评论、帖子历史。六袋长老及以上用户会永远保留账号。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 297, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.593425", + "updated_at": "2023-01-30 14:59:32.565706", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 600000, "ratio": 3.55, "torrents": 0, - "rights": "得到1个邀请名额,可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://pt.hd4fans.org/" + "rights": "得到1个邀请名额,可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 298, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.596541", + "updated_at": "2023-01-30 14:59:32.569550", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 800000, "ratio": 4.05, "torrents": 0, "rights": "得到3个邀请名额。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 299, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.599588", + "updated_at": "2023-01-30 14:59:32.573025", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到5个邀请名额。", - "site_id": "https://pt.hd4fans.org/" + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 300, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.602429", + "updated_at": "2023-01-30 14:59:32.576748", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pt.hd4fans.org/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 61, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 301, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.605586", + "updated_at": "2023-01-30 14:59:32.580393", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://pt.0ff.cc/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 302, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.608455", + "updated_at": "2023-01-30 14:59:32.583921", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.0ff.cc/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 303, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.611619", + "updated_at": "2023-01-30 14:59:32.587181", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://pt.0ff.cc/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 304, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.614627", + "updated_at": "2023-01-30 14:59:32.590867", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://pt.0ff.cc/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 305, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.617500", + "updated_at": "2023-01-30 14:59:32.594350", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pt.0ff.cc/" + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 306, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.620470", + "updated_at": "2023-01-30 14:59:32.598017", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://pt.0ff.cc/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 307, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.623284", + "updated_at": "2023-01-30 14:59:32.601421", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 800000, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://pt.0ff.cc/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 308, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.626615", + "updated_at": "2023-01-30 14:59:32.604941", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 1000000, "ratio": 4.05, "torrents": 0, "rights": "无", - "site_id": "https://pt.0ff.cc/" + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 309, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.629748", + "updated_at": "2023-01-30 14:59:32.608139", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 2000000, "ratio": 5.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://pt.0ff.cc/" + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 310, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.632709", + "updated_at": "2023-01-30 14:59:32.611684", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pt.0ff.cc/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 12, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 311, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.635869", + "updated_at": "2023-01-30 14:59:32.615000", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别;可以上传的字幕。", - "site_id": "https://wintersakura.net/" + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 312, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.639045", + "updated_at": "2023-01-30 14:59:32.618312", "level_id": 2, "level": "PowerUser", "days": 0, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 50000, "ratio": 1, "torrents": 0, - "rights": "可以查看 NFO 文档;可以请求续种; 可以购买 / 发送邀请;可以删除自己上传的字幕。可以申请友情链接;可以使用个性条。", - "site_id": "https://wintersakura.net/" + "rights": "可以查看NFO文档;可以请求续种;可以购买/发送邀请;可以删除自己上传的字幕。可以申请友情链接;可以使用个性条。", + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 313, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.642065", + "updated_at": "2023-01-30 14:59:32.621362", "level_id": 3, "level": "EliteUser", "days": 0, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 120000, "ratio": 1.5, "torrents": 0, "rights": "可以查看种子结构;可以更新外部信息", - "site_id": "https://wintersakura.net/" + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 314, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.645027", + "updated_at": "2023-01-30 14:59:32.625187", "level_id": 4, "level": "CrazyUser", "days": 0, "uploaded": "0", "downloaded": "800GB", - "bonus": 0, "score": 200000, "ratio": 2, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://wintersakura.net/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 315, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.648208", + "updated_at": "2023-01-30 14:59:32.628256", "level_id": 5, "level": "InsaneUser", "days": 0, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 500000, "ratio": 3, "torrents": 0, "rights": "可以查看排行榜。", - "site_id": "https://wintersakura.net/" + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 316, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.651266", + "updated_at": "2023-01-30 14:59:32.631651", "level_id": 6, "level": "VeteranUser", "days": 0, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 800000, "ratio": 4, "torrents": 0, "rights": "可以查看其它用户种子历史。(只有用户的隐私等级没有设为’强‘时才生效)", - "site_id": "https://wintersakura.net/" + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 317, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.654516", + "updated_at": "2023-01-30 14:59:32.634869", "level_id": 7, "level": "ExtremeUser", "days": 0, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 1400000, "ratio": 6, "torrents": 0, - "rights": "可以更新过期的外部信息。Extreme User 及以上用户封存账号后不会被删除", - "site_id": "https://wintersakura.net/" + "rights": "可以更新过期的外部信息。ExtremeUser 及以上用户封存账号后不会被删除", + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 318, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.657482", + "updated_at": "2023-01-30 14:59:32.638286", "level_id": 8, "level": "UltimateUser", "days": 0, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 2000000, "ratio": 8, "torrents": 0, - "rights": "首次到达此等级得到 1 个邀请名额。", - "site_id": "https://wintersakura.net/" + "rights": "首次到达此等级得到1个邀请名额。", + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 319, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.660852", + "updated_at": "2023-01-30 14:59:32.641531", "level_id": 9, "level": "NexusMaster", "days": 0, "uploaded": "0", "downloaded": "10TB", - "bonus": 0, "score": 2800000, "ratio": 9.5, "torrents": 0, - "rights": "首次到达此等级得到 1 个邀请名额 Nexus Master 及以上用户会永远保留账号。", - "site_id": "https://wintersakura.net/" + "rights": "首次到达此等级得到1个邀请名额 NexusMaster 及以上用户会永远保留账号。", + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 320, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.663897", + "updated_at": "2023-01-30 14:59:32.644895", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://wintersakura.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 10, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 321, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.666988", + "updated_at": "2023-01-30 14:59:32.648205", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "发布/下载种子,求种区求种,查看种子NFO", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 322, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.670116", + "updated_at": "2023-01-30 14:59:32.651363", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "50G", "downloaded": "0", - "bonus": 10000, "score": 0, "ratio": 0, "torrents": 0, "rights": "查看用户列表,请求续种,查看其他用户种子历史(隐私等级不为高时),删除自己上传的字幕", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 10000 }, { "id": 323, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.673490", + "updated_at": "2023-01-30 14:59:32.654588", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "200G", "downloaded": "0", - "bonus": 30000, "score": 0, "ratio": 0, "torrents": 0, "rights": "封存账号后不会被删除", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 30000 }, { "id": 324, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.676740", + "updated_at": "2023-01-30 14:59:32.657662", "level_id": 4, "level": "CrazyUser", "days": 16, "uploaded": "800G", "downloaded": "0", - "bonus": 80000, "score": 0, "ratio": 0, "torrents": 1, "rights": "首次升级至此等级时将获得1个永久邀请,发送邀请,做种/下载/发布时可以选择匿名", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 80000 }, { "id": 325, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.679839", + "updated_at": "2023-01-30 14:59:32.660888", "level_id": 5, "level": "InsaneUser", "days": 28, "uploaded": "2000G", "downloaded": "0", - "bonus": 150000, "score": 0, "ratio": 0, "torrents": 5, "rights": "首次升级至此等级时将获得1个永久邀请,查看普通日志", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 150000 }, { "id": 326, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.683146", + "updated_at": "2023-01-30 14:59:32.663875", "level_id": 6, "level": "VeteranUser", "days": 48, "uploaded": "4200G", "downloaded": "0", - "bonus": 300000, "score": 0, "ratio": 0, "torrents": 10, "rights": "首次升级至此等级时将获得1个永久邀请,查看其它用户的评论、帖子历史,永久保留账号", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 300000 }, { "id": 327, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.686159", + "updated_at": "2023-01-30 14:59:32.667150", "level_id": 7, "level": "ExtremeUser", "days": 72, "uploaded": "10000G", "downloaded": "0", - "bonus": 400000, "score": 0, "ratio": 0, "torrents": 15, "rights": "首次升级至此等级时将获得1个永久邀请", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 400000 }, { "id": 328, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.689412", + "updated_at": "2023-01-30 14:59:32.670162", "level_id": 8, "level": "UltimateUser", "days": 100, "uploaded": "20000G", "downloaded": "0", - "bonus": 600000, "score": 0, "ratio": 0, "torrents": 30, "rights": "首次升级至此等级时将获得1个永久邀请", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 600000 }, { "id": 329, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.692394", + "updated_at": "2023-01-30 14:59:32.673377", "level_id": 9, "level": "NexusMaster", "days": 132, "uploaded": "50000G", "downloaded": "0", - "bonus": 1000000, "score": 0, "ratio": 0, "torrents": 50, "rights": "首次升级至此等级时将获得3个永久邀请", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1000000 }, { "id": 330, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.695757", + "updated_at": "2023-01-30 14:59:32.676412", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "免除自动降级,不记录下载量,免除HnR考核", - "site_id": "https://www.tjupt.org/" + "site_id": 57, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 331, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.698917", + "updated_at": "2023-01-30 14:59:32.679690", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别;", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 332, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.702233", + "updated_at": "2023-01-30 14:59:32.683046", "level_id": 2, "level": "PowerUser", "days": 2, "uploaded": "45", "downloaded": "30", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, - "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://nanyangpt.com/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 333, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.705231", + "updated_at": "2023-01-30 14:59:32.686234", "level_id": 3, "level": "EliteUser", "days": 5, "uploaded": "125", "downloaded": "50", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, "rights": "优秀硕士及以上用户封存账号后不会被删除", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 334, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.708342", + "updated_at": "2023-01-30 14:59:32.690152", "level_id": 4, "level": "CrazyUser", "days": 10, "uploaded": "350", "downloaded": "100", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, - "rights": " 可以在做种/下载/发布的时候选择匿名模式,可以在邀请传送门版块发帖。", - "site_id": "https://nanyangpt.com/" + "rights": "可以在做种/下载/发布的时候选择匿名模式,可以在邀请传送门版块发帖。", + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 335, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.711537", + "updated_at": "2023-01-30 14:59:32.693626", "level_id": 5, "level": "InsaneUser", "days": 15, "uploaded": "1350", "downloaded": "300", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 336, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.714754", + "updated_at": "2023-01-30 14:59:32.697557", "level_id": 6, "level": "VeteranUser", "days": 20, "uploaded": "27500", "downloaded": "500", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, "rights": "可以查看排行榜;可以查看其它用户的评论、帖子历史。大学讲师及以上用户会永远保留账号。", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 337, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.717902", + "updated_at": "2023-01-30 14:59:32.700945", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "4550", "downloaded": "700", - "bonus": 0, "score": 0, "ratio": 6.5, "torrents": 0, "rights": "可以更新过期的外部信息;可以查看晋升副教论坛。", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 338, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.721058", + "updated_at": "2023-01-30 14:59:32.704977", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "6750", "downloaded": "900", - "bonus": 0, "score": 0, "ratio": 7.5, "torrents": 0, "rights": "无", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 339, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.724445", + "updated_at": "2023-01-30 14:59:32.708883", "level_id": 9, "level": "NexusMaster", "days": 50, "uploaded": "8500", "downloaded": "1000", - "bonus": 0, "score": 0, "ratio": 8.5, "torrents": 0, "rights": "无", - "site_id": "https://nanyangpt.com/" + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 340, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.727493", + "updated_at": "2023-01-30 14:59:32.712569", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\n和荣誉院士拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://nanyangpt.com/" + "rights": "和荣誉院士拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 51, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 341, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.730801", + "updated_at": "2023-01-30 14:59:32.716606", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://pt.eastgame.org/" + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 342, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.733791", + "updated_at": "2023-01-30 14:59:32.721362", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, - "rights": "可以查看NFO文档;可以请求续种; 查看种子结构; 可以删除自己上传的字幕。", - "site_id": "https://pt.eastgame.org/" + "rights": "可以查看NFO文档;可以请求续种;查看种子结构;可以删除自己上传的字幕。", + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 343, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.737075", + "updated_at": "2023-01-30 14:59:32.725792", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, - "rights": "可以查看用户的种子历史记录,如下载种子的历史记录(只有用户的隐私等级没有设为’强‘时才生效); 可以查看高级会员区 . Elite User +论坛。", - "site_id": "https://pt.eastgame.org/" + "rights": "可以查看用户的种子历史记录,如下载种子的历史记录(只有用户的隐私等级没有设为’强‘时才生效);可以查看高级会员区.EliteUser+论坛。", + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 344, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.740173", + "updated_at": "2023-01-30 14:59:32.729493", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, "rights": "可以查看排行榜;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://pt.eastgame.org/" + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 345, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.743444", + "updated_at": "2023-01-30 14:59:32.733360", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, - "rights": "可以发送邀请;查看一般日志,不能查看机密日志;Insane User及以上等级的账号如果在封存后将永远保留。", - "site_id": "https://pt.eastgame.org/" + "rights": "可以发送邀请;查看一般日志,不能查看机密日志;InsaneUser及以上等级的账号如果在封存后将永远保留。", + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 346, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.746532", + "updated_at": "2023-01-30 14:59:32.737780", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 5.05, "torrents": 0, - "rights": "得到一个邀请名额;可以查看其它用户的评论、帖子历史(如果用户隐私等级未设置为\"强\"); Veteran User及以上等级的账号将永远保留。", - "site_id": "https://pt.eastgame.org/" + "rights": "得到一个邀请名额;可以查看其它用户的评论、帖子历史(如果用户隐私等级未设置为\"强\"); VeteranUser及以上等级的账号将永远保留。", + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 347, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.749640", + "updated_at": "2023-01-30 14:59:32.742139", "level_id": 7, "level": "ExtremeUser", "days": 45, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 6.55, "torrents": 0, "rights": "得到三个邀请名额;可以更新过期的外部信息。", - "site_id": "https://pt.eastgame.org/" + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 348, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.752827", + "updated_at": "2023-01-30 14:59:32.746033", "level_id": 8, "level": "UltimateUser", "days": 50, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 7.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://pt.eastgame.org/" + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 349, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.755874", + "updated_at": "2023-01-30 14:59:32.749639", "level_id": 9, "level": "NexusMaster", "days": 55, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 8.55, "torrents": 0, - "rights": "\n得到十个邀请名额。", - "site_id": "https://pt.eastgame.org/" + "rights": "得到十个邀请名额。", + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 350, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.759043", + "updated_at": "2023-01-30 14:59:32.753162", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\n和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pt.eastgame.org/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 52, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 351, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.761918", + "updated_at": "2023-01-30 14:59:32.757058", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", - "site_id": "https://www.beitai.pt/" + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 352, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.765030", + "updated_at": "2023-01-30 14:59:32.760759", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.beitai.pt/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 353, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.768002", + "updated_at": "2023-01-30 14:59:32.764618", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://www.beitai.pt/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 354, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.771208", + "updated_at": "2023-01-30 14:59:32.768325", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://www.beitai.pt/" + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 355, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.774177", + "updated_at": "2023-01-30 14:59:32.772129", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://www.beitai.pt/" + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 356, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.777132", + "updated_at": "2023-01-30 14:59:32.775500", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://www.beitai.pt/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 357, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.780234", + "updated_at": "2023-01-30 14:59:32.779231", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://www.beitai.pt/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 358, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.783138", + "updated_at": "2023-01-30 14:59:32.782590", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.beitai.pt/" + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 359, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.786515", + "updated_at": "2023-01-30 14:59:32.786068", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://www.beitai.pt/" + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 360, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.789560", + "updated_at": "2023-01-30 14:59:32.789536", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.beitai.pt/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 21, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 361, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.792621", + "updated_at": "2023-01-30 14:59:32.792829", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://cyanbug.net/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 362, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.795426", + "updated_at": "2023-01-30 14:59:32.795834", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://cyanbug.net/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 363, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.798692", + "updated_at": "2023-01-30 14:59:32.799176", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://cyanbug.net/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 364, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.801706", + "updated_at": "2023-01-30 14:59:32.802320", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://cyanbug.net/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 365, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.804742", + "updated_at": "2023-01-30 14:59:32.805578", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://cyanbug.net/" + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 366, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.807880", + "updated_at": "2023-01-30 14:59:32.808708", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://cyanbug.net/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 367, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.810720", + "updated_at": "2023-01-30 14:59:32.811917", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://cyanbug.net/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 368, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.813996", + "updated_at": "2023-01-30 14:59:32.815070", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://cyanbug.net/" + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 369, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.817000", + "updated_at": "2023-01-30 14:59:32.818387", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://cyanbug.net/" + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 370, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.820223", + "updated_at": "2023-01-30 14:59:32.821822", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://cyanbug.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 77, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 371, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.823130", + "updated_at": "2023-01-30 14:59:32.824968", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://hdsky.me/" + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 372, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.826266", + "updated_at": "2023-01-30 14:59:32.828224", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 1.9, "torrents": 0, - "rights": "可以查看NFO文档;可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://hdsky.me/" + "rights": "可以查看NFO文档;可以请求续种;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 373, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.829447", + "updated_at": "2023-01-30 14:59:32.831285", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.4, "torrents": 0, - "rights": "同Power User", - "site_id": "https://hdsky.me/" + "rights": "同PowerUser", + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 374, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.832479", + "updated_at": "2023-01-30 14:59:32.834727", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 2.9, "torrents": 0, "rights": "可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://hdsky.me/" + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 375, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.835536", + "updated_at": "2023-01-30 14:59:32.837798", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 3.4, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hdsky.me/" + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 376, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.838368", + "updated_at": "2023-01-30 14:59:32.841190", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 3.9, "torrents": 0, - "rights": "明星(Veteran User)及以上用户封存账号后不会被删除。除非站点设置,可以查看其它用户的评论、帖子历史。", - "site_id": "https://hdsky.me/" + "rights": "明星(VeteranUser)及以上用户封存账号后不会被删除。除非站点设置,可以查看其它用户的评论、帖子历史。", + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 377, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.841490", + "updated_at": "2023-01-30 14:59:32.844199", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 0, "ratio": 4.4, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://hdsky.me/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 378, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.844352", + "updated_at": "2023-01-30 14:59:32.847433", "level_id": 8, "level": "UltimateUser", "days": 45, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 4.9, "torrents": 0, - "rights": "影帝(Ultimate User)及以上用户会永远保留账号,但不等于不会被封禁。此等级以上(含)免除站点定期进行的数据增量考核。", - "site_id": "https://hdsky.me/" + "rights": "影帝(UltimateUser)及以上用户会永远保留账号,但不等于不会被封禁。此等级以上(含)免除站点定期进行的数据增量考核。", + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 379, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.847560", + "updated_at": "2023-01-30 14:59:32.850446", "level_id": 9, "level": "NexusMaster", "days": 65, "uploaded": "0", "downloaded": "10TB", - "bonus": 0, "score": 0, "ratio": 5.4, "torrents": 0, "rights": "被视为站点精英成员,免除站点数据增量考核,永久保留账号;可以直接发布种子;可以查看排行榜;可以在网站开放邀请期间发送邀请,管理员设置的特殊情况除外;", - "site_id": "https://hdsky.me/" + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 380, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.850505", + "updated_at": "2023-01-30 14:59:32.853598", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和终身影帝(Nexus Master)拥有相同权限并被认为是精英成员。VIP期间免除自动降级。下载任何种子不会计算下载量。免除包括分享率在内的所有考核。VIP到期后若分享率低于1,系统将会自动提升分享率到1(但只能触发一次,不能多次提升)。注:永久VIP下载收费种子时会计算下载量,但不会因为分享率过低被降级。", - "site_id": "https://hdsky.me/" + "rights": "和终身影帝(NexusMaster)拥有相同权限并被认为是精英成员。VIP期间免除自动降级。下载任何种子不会计算下载量。免除包括分享率在内的所有考核。VIP到期后若分享率低于1,系统将会自动提升分享率到1(但只能触发一次,不能多次提升)。注:永久VIP下载收费种子时会计算下载量,但不会因为分享率过低被降级。", + "site_id": 7, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 381, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.853690", + "updated_at": "2023-01-30 14:59:32.856897", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。可以直接发布种子,可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://pt.hdupt.com/" + "rights": "新用户的默认级别。可以直接发布种子,可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 382, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.856998", + "updated_at": "2023-01-30 14:59:32.860119", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.hdupt.com/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 383, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.860237", + "updated_at": "2023-01-30 14:59:32.863311", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "略有小成 (Elite User) 及以上用户封存账号后不会被删除,可以进入论坛邀请区。", - "site_id": "https://pt.hdupt.com/" + "rights": "略有小成(EliteUser) 及以上用户封存账号后不会被删除,可以进入论坛邀请区。", + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 384, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.863676", + "updated_at": "2023-01-30 14:59:32.866450", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://pt.hdupt.com/" + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 385, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.866850", + "updated_at": "2023-01-30 14:59:32.869787", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 3.85, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://pt.hdupt.com/" + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 386, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.870109", + "updated_at": "2023-01-30 14:59:32.872898", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 5.95, "torrents": 0, - "rights": "得到一个邀请名额;可以查看其它用户的评论、帖子历史。炉火纯青 (Veteran User) 及以上用户会永远保留账号。", - "site_id": "https://pt.hdupt.com/" + "rights": "得到一个邀请名额;可以查看其它用户的评论、帖子历史。炉火纯青(VeteranUser) 及以上用户会永远保留账号。", + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 387, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.873233", + "updated_at": "2023-01-30 14:59:32.876208", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 6.55, "torrents": 0, - "rights": "得到一个邀请名额;可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://pt.hdupt.com/" + "rights": "得到一个邀请名额;可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 388, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.876685", + "updated_at": "2023-01-30 14:59:32.879216", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 7.05, "torrents": 0, "rights": "得到两个邀请名额。", - "site_id": "https://pt.hdupt.com/" + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 389, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.879818", + "updated_at": "2023-01-30 14:59:32.882458", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 8.85, "torrents": 0, "rights": "得到三个邀请名额。", - "site_id": "https://pt.hdupt.com/" + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 390, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.883152", + "updated_at": "2023-01-30 14:59:32.885473", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和超凡入圣 (Nexus Master)拥有相同权限并被认为是精英成员。免除自动降级,不会因分享率过低导致封号。", - "site_id": "https://pt.hdupt.com/" + "rights": "和超凡入圣(NexusMaster)拥有相同权限并被认为是精英成员。免除自动降级,不会因分享率过低导致封号。", + "site_id": 44, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 391, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.886272", + "updated_at": "2023-01-30 14:59:32.888914", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 392, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.889481", + "updated_at": "2023-01-30 14:59:32.892055", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "128GB", - "bonus": 0, "score": 40000, "ratio": 1.6, "torrents": 0, "rights": "新晋等级用户,权限同上。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 393, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.892499", + "updated_at": "2023-01-30 14:59:32.895383", "level_id": 3, "level": "EliteUser", "days": 5, "uploaded": "0", "downloaded": "256GB", - "bonus": 0, "score": 100000, "ratio": 1.9, "torrents": 0, - "rights": "Elite User权限同上。", - "site_id": "https://hdhome.org/" + "rights": "EliteUser权限同上。", + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 394, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.895732", + "updated_at": "2023-01-30 14:59:32.898614", "level_id": 4, "level": "CrazyUser", "days": 10, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 180000, "ratio": 2.3, "torrents": 0, "rights": "可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 395, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.898941", + "updated_at": "2023-01-30 14:59:32.901881", "level_id": 5, "level": "InsaneUser", "days": 10, "uploaded": "0", "downloaded": "768GB", - "bonus": 0, "score": 280000, "ratio": 2.7, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 396, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.902184", + "updated_at": "2023-01-30 14:59:32.905185", "level_id": 6, "level": "VeteranUser", "days": 20, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 400000, "ratio": 3.2, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 397, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.905541", + "updated_at": "2023-01-30 14:59:32.908333", "level_id": 7, "level": "ExtremeUser", "days": 20, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 540000, "ratio": 3.7, "torrents": 0, - "rights": "得到1个邀请名额,可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://hdhome.org/" + "rights": "得到1个邀请名额,可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 398, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.908627", + "updated_at": "2023-01-30 14:59:32.911747", "level_id": 8, "level": "UltimateUser", "days": 30, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 700000, "ratio": 4.2, "torrents": 0, - "rights": "\n得到1个邀请名额。", - "site_id": "https://hdhome.org/" + "rights": "得到1个邀请名额。", + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 399, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.911857", + "updated_at": "2023-01-30 14:59:32.915084", "level_id": 9, "level": "NexusMaster", "days": 30, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 1000000, "ratio": 4.9, "torrents": 0, "rights": "得到1个邀请名额。账号永久保留。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 400, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.914950", + "updated_at": "2023-01-30 14:59:32.918530", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "只需捐款,无视分享率,即只计算上传流量,不计算下载流量。同时账号不受登录时间限制,可在任意时间发送邀请。详见这里。", - "site_id": "https://hdhome.org/" + "site_id": 46, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 401, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.918218", + "updated_at": "2023-01-30 14:59:32.921757", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://chdbits.co/" + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 402, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.921321", + "updated_at": "2023-01-30 14:59:32.925422", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 80000, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以查看 NFO 文档;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://chdbits.co/" + "rights": "可以查看NFO文档;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 80000 }, { "id": 403, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.924634", + "updated_at": "2023-01-30 14:59:32.928783", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "500GB", - "bonus": 150000, "score": 0, "ratio": 3, "torrents": 0, "rights": "无", - "site_id": "https://chdbits.co/" + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 150000 }, { "id": 404, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.927790", + "updated_at": "2023-01-30 14:59:32.932152", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "800GB", - "bonus": 300000, "score": 0, "ratio": 4, "torrents": 0, - "rights": "可以查看 NFO 文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://chdbits.co/" + "rights": "可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 300000 }, { "id": 405, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.931136", + "updated_at": "2023-01-30 14:59:32.935420", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "999GB", - "bonus": 650000, "score": 0, "ratio": 5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://chdbits.co/" + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 650000 }, { "id": 406, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.934311", + "updated_at": "2023-01-30 14:59:32.938791", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "1500GB", - "bonus": 1000000, "score": 0, "ratio": 6, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。", - "site_id": "https://chdbits.co/" + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1000000 }, { "id": 407, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.937600", + "updated_at": "2023-01-30 14:59:32.942063", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "2TB", - "bonus": 2200000, "score": 0, "ratio": 7, "torrents": 0, - "rights": "首次升级赠送邀请 1 枚,可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://chdbits.co/" + "rights": "首次升级赠送邀请1枚,可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 2200000 }, { "id": 408, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.940735", + "updated_at": "2023-01-30 14:59:32.945604", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "3TB", - "bonus": 3500000, "score": 0, "ratio": 8, "torrents": 0, - "rights": "首次升级赠送邀请 2 枚,保留帐号,在官方活动期间可发放邀请;", - "site_id": "https://chdbits.co/" + "rights": "首次升级赠送邀请2枚,保留帐号,在官方活动期间可发放邀请;", + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 3500000 }, { "id": 409, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.943740", + "updated_at": "2023-01-30 14:59:32.950116", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "4TB", - "bonus": 5000000, "score": 0, "ratio": 10, "torrents": 0, - "rights": "首次升级赠送邀请 3 枚,保留帐号,在官方活动期间可发放邀请;", - "site_id": "https://chdbits.co/" + "rights": "首次升级赠送邀请3枚,保留帐号,在官方活动期间可发放邀请;", + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 5000000 }, { "id": 410, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.947044", + "updated_at": "2023-01-30 14:59:32.955577", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://chdbits.co/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 43, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 411, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.950181", + "updated_at": "2023-01-30 14:59:32.959441", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://hhanclub.top/" + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 412, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.953753", + "updated_at": "2023-01-30 14:59:32.962957", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://hhanclub.top/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 413, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.956852", + "updated_at": "2023-01-30 14:59:32.966604", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://hhanclub.top/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 414, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.959973", + "updated_at": "2023-01-30 14:59:32.970024", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hhanclub.top/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 415, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.962948", + "updated_at": "2023-01-30 14:59:32.973547", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hhanclub.top/" + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 416, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.966061", + "updated_at": "2023-01-30 14:59:32.976919", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://hhanclub.top/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 417, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.969162", + "updated_at": "2023-01-30 14:59:32.980676", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://hhanclub.top/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 418, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.972358", + "updated_at": "2023-01-30 14:59:32.984435", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://hhanclub.top/" + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 419, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.975417", + "updated_at": "2023-01-30 14:59:32.988016", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://hhanclub.top/" + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 420, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.978494", + "updated_at": "2023-01-30 14:59:32.991502", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hhanclub.top/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 55, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 421, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.981680", + "updated_at": "2023-01-30 14:59:32.995033", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。最多可以同时下载 10 个种子。", - "site_id": "https://ourbits.club/" + "rights": "新用户的默认级别。最多可以同时下载10个种子。", + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 422, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.984746", + "updated_at": "2023-01-30 14:59:32.998248", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。最多可以同时下载 20 个种子。", - "site_id": "https://ourbits.club/" + "rights": "可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。最多可以同时下载20个种子。", + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 423, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.987753", + "updated_at": "2023-01-30 14:59:33.001484", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "350GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。此等级及以上没有下载数限制。可以查看论坛 Elite User (邀请交流版)。", - "site_id": "https://ourbits.club/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。此等级及以上没有下载数限制。可以查看论坛EliteUser(邀请交流版)。", + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 424, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.990624", + "updated_at": "2023-01-30 14:59:33.004558", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://ourbits.club/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 425, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.993747", + "updated_at": "2023-01-30 14:59:33.007832", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://ourbits.club/" + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 426, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.996689", + "updated_at": "2023-01-30 14:59:33.010967", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://ourbits.club/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 427, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:36.999859", + "updated_at": "2023-01-30 14:59:33.014384", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, "rights": "得到一个永久邀请;可以更新过期的外部信息。", - "site_id": "https://ourbits.club/" + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 428, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.002860", + "updated_at": "2023-01-30 14:59:33.017487", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, "rights": "得到两个永久邀请;", - "site_id": "https://ourbits.club/" + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 429, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.005647", + "updated_at": "2023-01-30 14:59:33.020822", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, "rights": "得到三个永久邀请", - "site_id": "https://ourbits.club/" + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 430, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.008991", + "updated_at": "2023-01-30 14:59:33.024109", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "免除自动降级,只计算上传量,不计算下载量。", - "site_id": "https://ourbits.club/" + "site_id": 45, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 431, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.012043", + "updated_at": "2023-01-30 14:59:33.027369", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://hdtime.org/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 432, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.015171", + "updated_at": "2023-01-30 14:59:33.030628", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://hdtime.org/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 433, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.018207", + "updated_at": "2023-01-30 14:59:33.033911", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "150GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://hdtime.org/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 434, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.021134", + "updated_at": "2023-01-30 14:59:33.037103", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hdtime.org/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 435, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.024144", + "updated_at": "2023-01-30 14:59:33.040132", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hdtime.org/" + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 436, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.026892", + "updated_at": "2023-01-30 14:59:33.043347", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, - "rights": "免除增量考核;得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://hdtime.org/" + "rights": "免除增量考核;得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 437, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.029544", + "updated_at": "2023-01-30 14:59:33.046481", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 600000, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://hdtime.org/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 438, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.032658", + "updated_at": "2023-01-30 14:59:33.049779", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 800000, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://hdtime.org/" + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 439, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.035552", + "updated_at": "2023-01-30 14:59:33.052870", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "10TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://hdtime.org/" + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 440, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.038515", + "updated_at": "2023-01-30 14:59:33.056085", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和HDtime Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdtime.org/" + "rights": "和HDtimeMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 8, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 441, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.041595", + "updated_at": "2023-01-30 14:59:33.059133", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "如果下载量低于100G,不参与账户升级或降级。也就是将一直保持User级,该规则一直存在,只是最近才在代码中发现。", - "site_id": "https://www.pttime.org/" + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 442, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.044405", + "updated_at": "2023-01-30 14:59:33.062376", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "(小学)Power User及以上等级。首次升级至此等级的用户将获得2个邀请名额。", - "site_id": "https://www.pttime.org/" + "rights": "(小学)PowerUser及以上等级。首次升级至此等级的用户将获得2个邀请名额。", + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 443, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.047496", + "updated_at": "2023-01-30 14:59:33.065458", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, "rights": "首次升级至此等级的用户将获得2个邀请名额。", - "site_id": "https://www.pttime.org/" + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 444, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.050306", + "updated_at": "2023-01-30 14:59:33.068629", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "2048GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "(高中)Crazy User封存后永远保留。首次升级至此等级的用户将获得2个邀请名额。", - "site_id": "https://www.pttime.org/" + "rights": "(高中)CrazyUser封存后永远保留。首次升级至此等级的用户将获得2个邀请名额。", + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 445, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.053329", + "updated_at": "2023-01-30 14:59:33.071754", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "4096GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "首次升级至此等级的用户将获得2个邀请名额。", - "site_id": "https://www.pttime.org/" + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 446, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.056293", + "updated_at": "2023-01-30 14:59:33.075387", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "8192GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, "rights": "首次升级至此等级的用户将获得2个邀请名额。", - "site_id": "https://www.pttime.org/" + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 447, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.059631", + "updated_at": "2023-01-30 14:59:33.078853", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "16384GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "永远保留(研究生)Extreme User账号。首次升级至此等级的用户将获得2个邀请名额。", - "site_id": "https://www.pttime.org/" + "rights": "永远保留(研究生)ExtremeUser账号。首次升级至此等级的用户将获得2个邀请名额。", + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 448, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.062794", + "updated_at": "2023-01-30 14:59:33.082026", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "35000GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "首次升级至此等级的用户将获得5个邀请名额。", - "site_id": "https://www.pttime.org/" + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 449, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.065835", + "updated_at": "2023-01-30 14:59:33.085301", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "70000GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "首次升级至此等级的用户将获得10个邀请名额。", - "site_id": "https://www.pttime.org/" + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 450, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.069042", + "updated_at": "2023-01-30 14:59:33.088433", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "1、永久贵宾无数据要求:分享率、下载量、上传量等。2、直接过新手考核,可直接过其他临时考核。3、力所能及的 PT 相关技术支持、及其他技术支持。", - "site_id": "https://www.pttime.org/" + "rights": "1、永久贵宾无数据要求:分享率、下载量、上传量等。2、直接过新手考核,可直接过其他临时考核。3、力所能及的PT相关技术支持、及其他技术支持。", + "site_id": 15, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 451, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.072134", + "updated_at": "2023-01-30 14:59:33.091636", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hdpt.xyz/" + "rights": "新用户的默认级别;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 452, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.075171", + "updated_at": "2023-01-30 14:59:33.094692", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 50000, "ratio": 2, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以请求续种; 可以发送邀请。", - "site_id": "https://hdpt.xyz/" + "rights": "得到一个邀请名额;可以直接发布种子;可以请求续种;可以发送邀请。", + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 453, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.078370", + "updated_at": "2023-01-30 14:59:33.097766", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 110000, "ratio": 3, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://hdpt.xyz/" + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 454, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.081420", + "updated_at": "2023-01-30 14:59:33.101267", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "700GB", - "bonus": 0, "score": 200000, "ratio": 4, "torrents": 0, "rights": "得到二个邀请名额。", - "site_id": "https://hdpt.xyz/" + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 455, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.084785", + "updated_at": "2023-01-30 14:59:33.104553", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 300000, "ratio": 5, "torrents": 0, "rights": "得到二个邀请名额;", - "site_id": "https://hdpt.xyz/" + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 456, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.087994", + "updated_at": "2023-01-30 14:59:33.107912", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 500000, "ratio": 6, "torrents": 0, - "rights": "得到二个邀请名额。神蛇 (Veteran User) 及以上等级的账号如果在封存后将保留,封存的账号如果连续 400 天不登录,将被封禁;未封存的账号如果连续 90 天不登录,将被封禁;没有流量的用户(即上传 / 下载数据都为 0)如果连续 90 天不登录,将被封禁账号。", - "site_id": "https://hdpt.xyz/" + "rights": "得到二个邀请名额。神蛇(VeteranUser) 及以上等级的账号如果在封存后将保留,封存的账号如果连续400天不登录,将被封禁;未封存的账号如果连续90天不登录,将被封禁;没有流量的用户(即上传/下载数据都为0)如果连续90天不登录,将被封禁账号。", + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 457, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.091336", + "updated_at": "2023-01-30 14:59:33.111278", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 700000, "ratio": 7, "torrents": 0, - "rights": "得到二个邀请名额;可以更新过期的外部信息;可以查看 Extreme User 论坛。紫微 (Extreme User) 及以上用户会永远保留账号。", - "site_id": "https://hdpt.xyz/" + "rights": "得到二个邀请名额;可以更新过期的外部信息;可以查看ExtremeUser论坛。紫微(ExtremeUser) 及以上用户会永远保留账号。", + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 458, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.094396", + "updated_at": "2023-01-30 14:59:33.114734", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1000000, "ratio": 8, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://hdpt.xyz/" + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 459, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.097590", + "updated_at": "2023-01-30 14:59:33.118069", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 1500000, "ratio": 9, "torrents": 0, "rights": "得到七个邀请名额。", - "site_id": "https://hdpt.xyz/" + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 460, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.100632", + "updated_at": "2023-01-30 14:59:33.121446", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和天微 (Nexus Master)拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdpt.xyz/" + "rights": "和天微(NexusMaster)拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 32, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 461, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.103804", + "updated_at": "2023-01-30 14:59:33.124777", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "无", - "site_id": "https://pt.hdpost.top/" + "site_id": 85, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 462, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.107239", + "updated_at": "2023-01-30 14:59:33.128011", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "1TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "无", - "site_id": "https://pt.hdpost.top/" + "site_id": 85, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 463, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.110366", + "updated_at": "2023-01-30 14:59:33.131372", "level_id": 3, "level": "SuperUser", "days": 9, "uploaded": "5TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "无", - "site_id": "https://pt.hdpost.top/" + "site_id": 85, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 464, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.113667", + "updated_at": "2023-01-30 14:59:33.134766", "level_id": 4, "level": "ExtremeUser", "days": 13, "uploaded": "20TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "无", - "site_id": "https://pt.hdpost.top/" + "site_id": 85, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 465, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.116714", + "updated_at": "2023-01-30 14:59:33.137948", "level_id": 5, "level": "InsaneUser", "days": 26, "uploaded": "50TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "无", - "site_id": "https://pt.hdpost.top/" + "site_id": 85, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 466, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.119954", + "updated_at": "2023-01-30 14:59:33.141427", "level_id": 6, "level": "Veteran", "days": 52, "uploaded": "100TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "无", - "site_id": "https://pt.hdpost.top/" + "site_id": 85, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 467, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.123126", + "updated_at": "2023-01-30 14:59:33.144764", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": " \t新用户的默认级别。可以查看 NFO 文档;", - "site_id": "https://pt.keepfrds.com/" + "rights": "新用户的默认级别。可以查看NFO文档;", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 468, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.126456", + "updated_at": "2023-01-30 14:59:33.148278", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "50G", - "bonus": 3200, "score": 0, "ratio": 1, "torrents": 0, - "rights": "可以请求续种;可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\");可以查看 IMDB/Douban 信息。可以使用魔力值。", - "site_id": "https://pt.keepfrds.com/" + "rights": "可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以查看IMDB/Douban信息。可以使用魔力值。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 3200 }, { "id": 469, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.129631", + "updated_at": "2023-01-30 14:59:33.151618", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "150G", - "bonus": 19200, "score": 0, "ratio": 1.5, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。可以查看排行榜,IMDB/Douban Top 榜单,和论坛的邀请区。", - "site_id": "https://pt.keepfrds.com/" + "rights": "EliteUser及以上用户封存账号后不会被删除。可以查看排行榜,IMDB/DoubanTop榜单,和论坛的邀请区。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 19200 }, { "id": 470, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.132813", + "updated_at": "2023-01-30 14:59:33.154937", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300G", - "bonus": 76800, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以在做种 / 下载的时候选择匿名模式。可以使用自动合集功能。", - "site_id": "https://pt.keepfrds.com/" + "rights": "可以在做种/下载的时候选择匿名模式。可以使用自动合集功能。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 76800 }, { "id": 471, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.136033", + "updated_at": "2023-01-30 14:59:33.158189", "level_id": 5, "level": "InsaneUser", "days": 30, "uploaded": "0", "downloaded": "500G", - "bonus": 256000, "score": 0, "ratio": 2.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pt.keepfrds.com/" + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 256000 }, { "id": 472, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.139252", + "updated_at": "2023-01-30 14:59:33.161723", "level_id": 6, "level": "VeteranUser", "days": 60, "uploaded": "0", "downloaded": "1T", - "bonus": 640000, "score": 0, "ratio": 3.5, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号,并且在上传下载时有更大的概率被 Tracker 返回 peer。", - "site_id": "https://pt.keepfrds.com/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号,并且在上传下载时有更大的概率被Tracker返回peer。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 640000 }, { "id": 473, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.142361", + "updated_at": "2023-01-30 14:59:33.165034", "level_id": 7, "level": "ExtremeUser", "days": 90, "uploaded": "0", "downloaded": "2T", - "bonus": 1280000, "score": 0, "ratio": 4, "torrents": 0, - "rights": "超速后不会受到额外惩罚,上传量按照等级对应的限速计算,但是仍然会无视种子优惠计算 100% 的下载量。", - "site_id": "https://pt.keepfrds.com/" + "rights": "超速后不会受到额外惩罚,上传量按照等级对应的限速计算,但是仍然会无视种子优惠计算100%的下载量。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1280000 }, { "id": 474, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.145483", + "updated_at": "2023-01-30 14:59:33.168497", "level_id": 8, "level": "UltimateUser", "days": 120, "uploaded": "0", "downloaded": "3T", - "bonus": 1920000, "score": 0, "ratio": 4.5, "torrents": 0, - "rights": "上传速度限制提升为普通用户的二倍(200Mbps/25MB/s)可以访问 Keepfrds Beta(注:由于 beta 版中的功能均为实验性质,由 bug 而产生的损失由会员自行承担。)", - "site_id": "https://pt.keepfrds.com/" + "rights": "上传速度限制提升为普通用户的二倍(200Mbps/25MB/s)可以访问KeepfrdsBeta(注:由于beta版中的功能均为实验性质,由bug而产生的损失由会员自行承担。)", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1920000 }, { "id": 475, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.148775", + "updated_at": "2023-01-30 14:59:33.171706", "level_id": 9, "level": "NexusMaster", "days": 150, "uploaded": "0", "downloaded": "4T", - "bonus": 2560000, "score": 0, "ratio": 5, "torrents": 0, - "rights": "真正的大佬,FRDS PT 最硬核的会员,除了数据考核要求,其他权利等同于 VIP,包括没有上传速度的限制。", - "site_id": "https://pt.keepfrds.com/" + "rights": "真正的大佬,FRDSPT最硬核的会员,除了数据考核要求,其他权利等同于VIP,包括没有上传速度的限制。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 2560000 }, { "id": 476, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.151807", + "updated_at": "2023-01-30 14:59:33.175138", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "为 FRDS 做出过卓越贡献的精英成员。免除自动降级。", - "site_id": "https://pt.keepfrds.com/" + "rights": "为FRDS做出过卓越贡献的精英成员。免除自动降级。", + "site_id": 38, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 477, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.155063", + "updated_at": "2023-01-30 14:59:33.178319", "level_id": 1, "level": "筑基", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 478, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.158227", + "updated_at": "2023-01-30 14:59:33.181981", "level_id": 2, "level": "结丹", "days": 5, "uploaded": "0", "downloaded": "10GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 479, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.161462", + "updated_at": "2023-01-30 14:59:33.185234", "level_id": 3, "level": "元婴", "days": 10, "uploaded": "0", "downloaded": "25GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 480, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.164530", + "updated_at": "2023-01-30 14:59:33.188587", "level_id": 4, "level": "出窍", "days": 15, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 481, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.167762", + "updated_at": "2023-01-30 14:59:33.191865", "level_id": 5, "level": "炼虚", "days": 20, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 482, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.170638", + "updated_at": "2023-01-30 14:59:33.195341", "level_id": 6, "level": "合体", "days": 25, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 483, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.173830", + "updated_at": "2023-01-30 14:59:33.198639", "level_id": 7, "level": "大乘", "days": 30, "uploaded": "0", "downloaded": "300G", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 484, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.176865", + "updated_at": "2023-01-30 14:59:33.202096", "level_id": 8, "level": "真仙", "days": 35, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 0, "ratio": 8, "torrents": 0, "rights": "无", - "site_id": "https://zhuque.in/" + "site_id": 86, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 485, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.179824", + "updated_at": "2023-01-30 14:59:33.205164", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": " 新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", - "site_id": "https://xinglin.one/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 486, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.182902", + "updated_at": "2023-01-30 14:59:33.208514", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://xinglin.one/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 487, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.185844", + "updated_at": "2023-01-30 14:59:33.211526", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://xinglin.one/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 488, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.189030", + "updated_at": "2023-01-30 14:59:33.214870", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://xinglin.one/" + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 489, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.191980", + "updated_at": "2023-01-30 14:59:33.218089", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, - "rights": "\t可以查看普通日志。", - "site_id": "https://xinglin.one/" + "rights": "可以查看普通日志。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 490, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.195052", + "updated_at": "2023-01-30 14:59:33.221242", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "\t得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://xinglin.one/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 491, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.198063", + "updated_at": "2023-01-30 14:59:33.224373", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://xinglin.one/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 492, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.201016", + "updated_at": "2023-01-30 14:59:33.227279", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://xinglin.one/" + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 493, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.203927", + "updated_at": "2023-01-30 14:59:33.230477", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://xinglin.one/" + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 494, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.206795", + "updated_at": "2023-01-30 14:59:33.233446", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\t和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://xinglin.one/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 73, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 495, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.209893", + "updated_at": "2023-01-30 14:59:33.236799", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://lemonhd.org/" + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 496, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.212685", + "updated_at": "2023-01-30 14:59:33.239852", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://lemonhd.org/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 497, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.215753", + "updated_at": "2023-01-30 14:59:33.243171", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "350GB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "\tElite User及以上用户封存账号后不会被删除。", - "site_id": "https://lemonhd.org/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 498, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.218635", + "updated_at": "2023-01-30 14:59:33.246120", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "\t可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://lemonhd.org/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 499, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.221498", + "updated_at": "2023-01-30 14:59:33.249275", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://lemonhd.org/" + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 500, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.224601", + "updated_at": "2023-01-30 14:59:33.252357", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://lemonhd.org/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 501, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.227441", + "updated_at": "2023-01-30 14:59:33.255389", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 4.5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://lemonhd.org/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 502, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.230489", + "updated_at": "2023-01-30 14:59:33.258590", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "同Extreme User", - "site_id": "https://lemonhd.org/" + "rights": "同ExtremeUser", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 503, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.233425", + "updated_at": "2023-01-30 14:59:33.261541", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 5.5, "torrents": 0, - "rights": "同Extreme User", - "site_id": "https://lemonhd.org/" + "rights": "同ExtremeUser", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 504, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.236563", + "updated_at": "2023-01-30 14:59:33.264746", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "\t和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级", - "site_id": "https://lemonhd.org/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级", + "site_id": 50, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 505, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.239443", + "updated_at": "2023-01-30 14:59:33.267756", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。可以直接发布种子。", - "site_id": "https://azusa.wiki/" + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 506, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.242440", + "updated_at": "2023-01-30 14:59:33.271053", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1, "torrents": 1, - "rights": "得到一个邀请名额;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://azusa.wiki/" + "rights": "得到一个邀请名额;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 507, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.245573", + "updated_at": "2023-01-30 14:59:33.274125", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 100000, "ratio": 2, "torrents": 10, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://azusa.wiki/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 508, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.248401", + "updated_at": "2023-01-30 14:59:33.277285", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "150G", - "bonus": 0, "score": 300000, "ratio": 3, "torrents": 20, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://azusa.wiki/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 509, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.251480", + "updated_at": "2023-01-30 14:59:33.280318", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 500000, "ratio": 4, "torrents": 40, "rights": "可以查看普通日志。", - "site_id": "https://azusa.wiki/" + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 510, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.254373", + "updated_at": "2023-01-30 14:59:33.283294", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "250GB", - "bonus": 0, "score": 1000000, "ratio": 5, "torrents": 80, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://azusa.wiki/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 511, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.257358", + "updated_at": "2023-01-30 14:59:33.286451", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "300G", - "bonus": 0, "score": 1500000, "ratio": 6, "torrents": 150, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://azusa.wiki/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 512, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.260184", + "updated_at": "2023-01-30 14:59:33.289331", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "350GB", - "bonus": 0, "score": 2000000, "ratio": 7, "torrents": 150, "rights": "得到五个邀请名额。", - "site_id": "https://azusa.wiki/" + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 513, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.263152", + "updated_at": "2023-01-30 14:59:33.292593", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 5000000, "ratio": 8, "torrents": 300, "rights": "得到十个邀请名额。", - "site_id": "https://azusa.wiki/" + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 514, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.266239", + "updated_at": "2023-01-30 14:59:33.295556", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://azusa.wiki/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 35, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 515, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.269096", + "updated_at": "2023-01-30 14:59:33.298913", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "http://www.oshen.win/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 516, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.272396", + "updated_at": "2023-01-30 14:59:33.302143", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "http://www.oshen.win/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 517, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.275560", + "updated_at": "2023-01-30 14:59:33.305493", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "http://www.oshen.win/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 518, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.278858", + "updated_at": "2023-01-30 14:59:33.308591", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "http://www.oshen.win/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 519, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.281924", + "updated_at": "2023-01-30 14:59:33.311801", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "http://www.oshen.win/" + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 520, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.285204", + "updated_at": "2023-01-30 14:59:33.315167", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "http://www.oshen.win/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 521, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.288209", + "updated_at": "2023-01-30 14:59:33.318228", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 600000, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "http://www.oshen.win/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 522, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.291295", + "updated_at": "2023-01-30 14:59:33.321657", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 800000, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "http://www.oshen.win/" + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 523, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.294602", + "updated_at": "2023-01-30 14:59:33.324846", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "http://www.oshen.win/" + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 524, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.297654", + "updated_at": "2023-01-30 14:59:33.328274", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "http://www.oshen.win/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 16, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 525, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.300844", + "updated_at": "2023-01-30 14:59:33.331466", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://www.htpt.cc/" + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 526, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.304103", + "updated_at": "2023-01-30 14:59:33.334919", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://www.htpt.cc/" + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 527, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.307355", + "updated_at": "2023-01-30 14:59:33.338124", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "得到一个邀请名额,且 Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://www.htpt.cc/" + "rights": "得到一个邀请名额,且 EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 528, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.310537", + "updated_at": "2023-01-30 14:59:33.341601", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://www.htpt.cc/" + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 529, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.313866", + "updated_at": "2023-01-30 14:59:33.344829", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://www.htpt.cc/" + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 530, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.316902", + "updated_at": "2023-01-30 14:59:33.348261", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到一个邀请名额,且 Veteran User 及以上用户会永远保留账号。", - "site_id": "https://www.htpt.cc/" + "rights": "得到一个邀请名额,且 VeteranUser 及以上用户会永远保留账号。", + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 531, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.320130", + "updated_at": "2023-01-30 14:59:33.351365", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "得到一个邀请名额,可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://www.htpt.cc/" + "rights": "得到一个邀请名额,可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 532, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.323266", + "updated_at": "2023-01-30 14:59:33.354957", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://www.htpt.cc/" + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 533, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.326627", + "updated_at": "2023-01-30 14:59:33.358296", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到一个邀请名额。", - "site_id": "https://www.htpt.cc/" + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 534, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.329771", + "updated_at": "2023-01-30 14:59:33.361676", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.htpt.cc/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 17, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 535, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.332846", + "updated_at": "2023-01-30 14:59:33.364951", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别,仅能下载免费种子,可以直接发布种子。", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 536, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.336113", + "updated_at": "2023-01-30 14:59:33.368446", "level_id": 2, "level": "PowerUser", "days": 2, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 100, "ratio": 1, "torrents": 0, "rights": "允许购买邀请码,可以直接发布种子,可以删除自己上传的字幕。", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 537, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.339167", + "updated_at": "2023-01-30 14:59:33.371675", "level_id": 3, "level": "EliteUser", "days": 4, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 200, "ratio": 1, "torrents": 0, - "rights": "Elite User 允许发送邀请码,并拥有低于该等级以下权限。", - "site_id": "https://www.haidan.video/" + "rights": "EliteUser 允许发送邀请码,并拥有低于该等级以下权限。", + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 538, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.342507", + "updated_at": "2023-01-30 14:59:33.375119", "level_id": 4, "level": "CrazyUser", "days": 8, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 500, "ratio": 1, "torrents": 0, "rights": "查看种子结构,并拥有低于该等级以下权限。", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 539, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.345656", + "updated_at": "2023-01-30 14:59:33.378269", "level_id": 5, "level": "InsaneUser", "days": 16, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 1000, "ratio": 1, "torrents": 0, "rights": "发布趣味盒,并拥有低于该等级以下权限。", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 540, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.348969", + "updated_at": "2023-01-30 14:59:33.381733", "level_id": 6, "level": "VeteranUser", "days": 28, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 2000, "ratio": 1, "torrents": 0, - "rights": "Veteran User 永远保留账号,并拥有低于该等级以下权限。", - "site_id": "https://www.haidan.video/" + "rights": "VeteranUser 永远保留账号,并拥有低于该等级以下权限。", + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 541, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.352190", + "updated_at": "2023-01-30 14:59:33.385121", "level_id": 7, "level": "ExtremeUser", "days": 32, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 5000, "ratio": 1, "torrents": 0, "rights": "查看日志权限,并拥有低于该等级以下权限。", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 542, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.355494", + "updated_at": "2023-01-30 14:59:33.388535", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 8000, "ratio": 1, "torrents": 0, "rights": "查看排行榜,并拥有低于该等级以下权限", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 543, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.358628", + "updated_at": "2023-01-30 14:59:33.391801", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 10000, "ratio": 1, "torrents": 0, "rights": "允许匿名,拥有发布主题推荐权限,并拥有低于该等级以下权限", - "site_id": "https://www.haidan.video/" + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 544, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.362007", + "updated_at": "2023-01-30 14:59:33.394999", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "海胆尊贵会员期间,拥有以上全部权限,并且拥有独有标识。和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.haidan.video/" + "rights": "海胆尊贵会员期间,拥有以上全部权限,并且拥有独有标识。和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 24, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 545, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.364974", + "updated_at": "2023-01-30 14:59:33.398404", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "所有新用户的默认等级\n能够使用 RSS 订阅系统\n具有论坛「茶话会」版块的阅读权限", - "site_id": "https://dicmusic.club/" + "rights": "所有新用户的默认等级\n能够使用RSS订阅系统\n具有论坛「茶话会」版块的阅读权限", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 546, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.368126", + "updated_at": "2023-01-30 14:59:33.401581", "level_id": 2, "level": "Member", "days": 1, "uploaded": "0", "downloaded": "80GB", - "bonus": 0, "score": 0, "ratio": 0.8, "torrents": 0, - "rights": "享有低级别所有权限\n能够发起 求种\n能够查看部分 排行榜\n能够完全访问「茶话会」版块", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n能够发起求种\n能够查看部分排行榜\n能够完全访问「茶话会」版块", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 547, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.371242", + "updated_at": "2023-01-30 14:59:33.404978", "level_id": 3, "level": "PowerUser", "days": 2, "uploaded": "0", "downloaded": "200GB", - "bonus": 1, "score": 0, "ratio": 1.2, "torrents": 1, - "rights": "享有低级别所有权限\n能够发送 邀请,首次升级赠送 1 枚永久 邀请\n发邀至少间隔 1 周\n能够佩戴 1 枚 印记\n能够创建 1 个私人 合集\n能够访问论坛的「求邀区」「发邀区」「Power User」版块\n能够完全访问 排行榜\n免疫 账号不活跃(保号)", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n能够发送邀请,首次升级赠送1枚永久邀请\n发邀至少间隔1周\n能够佩戴1枚印记\n能够创建1个私人合集\n能够访问论坛的「求邀区」「发邀区」「PowerUser」版块\n能够完全访问排行榜\n免疫账号不活跃(保号)", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1 }, { "id": 548, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.374298", + "updated_at": "2023-01-30 14:59:33.408052", "level_id": 4, "level": "Elite", "days": 4, "uploaded": "0", "downloaded": "500GB", - "bonus": 25, "score": 0, "ratio": 1.2, "torrents": 25, - "rights": "享有低级别所有权限\n首次升级赠送 1 枚永久 邀请\n能够佩戴 2 枚 印记\n能够创建 2 个私人 合集\n能够访问论坛的「Elite」版块\n能够 检查 自己发布的种子\n能够 编辑 所有种子", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n首次升级赠送1枚永久邀请\n能够佩戴2枚印记\n能够创建2个私人合集\n能够访问论坛的「Elite」版块\n能够检查自己发布的种子\n能够编辑所有种子", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 25 }, { "id": 549, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.377453", + "updated_at": "2023-01-30 14:59:33.411313", "level_id": 5, "level": "TorrentMaster", "days": 8, "uploaded": "0", "downloaded": "1TB", - "bonus": 100, "score": 0, "ratio": 1.2, "torrents": 100, - "rights": "享有低级别所有权限\n首次升级赠送 2 枚永久 邀请\n每月获赠 1 枚临时邀请(有效期 2 周)\n发邀至少间隔 72 小时\n能够佩戴 3 枚 印记\n能够创建 3 个私人 合集\n能够访问论坛的「Torrent Master」版块\n能够在 商城 购买「自定义头衔(不允许 BBCode)」", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n首次升级赠送2枚永久邀请\n每月获赠1枚临时邀请(有效期2周)\n发邀至少间隔72小时\n能够佩戴3枚印记\n能够创建3个私人合集\n能够访问论坛的「TorrentMaster」版块\n能够在商城购买「自定义头衔(不允许BBCode)」", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 100 }, { "id": 550, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.380370", + "updated_at": "2023-01-30 14:59:33.414494", "level_id": 6, "level": "PowerTorrentMaster", "days": 12, "uploaded": "0", "downloaded": "2TB", - "bonus": 250, "score": 0, "ratio": 1.2, "torrents": 250, - "rights": "享有低级别所有权限\n首次升级赠送 2 枚永久 邀请\n每月获赠 2 枚临时邀请(有效期 2 周)\n能够佩戴 4 枚 印记\n能够创建 4 个私人 合集\n能够 检查 所有种子", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n首次升级赠送2枚永久邀请\n每月获赠2枚临时邀请(有效期2周)\n能够佩戴4枚印记\n能够创建4个私人合集\n能够检查所有种子", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 250 }, { "id": 551, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.383589", + "updated_at": "2023-01-30 14:59:33.417755", "level_id": 7, "level": "EliteTorrentMaster", "days": 16, "uploaded": "0", "downloaded": "5TB", - "bonus": 500, "score": 0, "ratio": 1.2, "torrents": 500, - "rights": "享有低级别所有权限\n首次升级赠送 3 枚永久 邀请\n每月获赠 3 枚临时邀请(有效期 2 周)\n无发邀间隔\n能够佩戴 5 枚 印记\n能够创建 5 个私人 合集\n能够访问论坛的「Elite Torrent Master」版块\n能够在 商城 购买「自定义头衔(允许 BBCode)」", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n首次升级赠送3枚永久邀请\n每月获赠3枚临时邀请(有效期2周)\n无发邀间隔\n能够佩戴5枚印记\n能够创建5个私人合集\n能够访问论坛的「EliteTorrentMaster」版块\n能够在商城购买「自定义头衔(允许BBCode)」", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 500 }, { "id": 552, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.386453", + "updated_at": "2023-01-30 14:59:33.420686", "level_id": 8, "level": "Guru", "days": 20, "uploaded": "0", "downloaded": "10TB", - "bonus": 1000, "score": 0, "ratio": 1.2, "torrents": 1000, - "rights": "享有低级别所有权限\n拥有无限 邀请\n能够佩戴 6 枚 印记\n能够创建 6 个私人 合集\n能够访问论坛的「Guru」版块\n能够查看 日志", - "site_id": "https://dicmusic.club/" + "rights": "享有低级别所有权限\n拥有无限邀请\n能够佩戴6枚印记\n能够创建6个私人合集\n能够访问论坛的「Guru」版块\n能够查看日志", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1000 }, { "id": 553, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.389595", + "updated_at": "2023-01-30 14:59:33.424088", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "对站点做过特殊贡献或特邀会员。由管理人员选出。禁止任何人索要 VIP!", - "site_id": "https://dicmusic.club/" + "rights": "对站点做过特殊贡献或特邀会员。由管理人员选出。禁止任何人索要VIP!", + "site_id": 75, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 554, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.392691", + "updated_at": "2023-01-30 14:59:33.427161", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "所有新用户的默认等级\n能够使用 RSS 订阅系统\n具有论坛「茶话会」版块的阅读权限", - "site_id": "https://greatposterwall.com/" + "rights": "所有新用户的默认等级\n能够使用RSS订阅系统\n具有论坛「茶话会」版块的阅读权限", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 555, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.395825", + "updated_at": "2023-01-30 14:59:33.430424", "level_id": 2, "level": "Member", "days": 1, "uploaded": "0", "downloaded": "80GB", - "bonus": 0, "score": 0, "ratio": 0.8, "torrents": 0, - "rights": "享有低级别所有权限\n能够发起 求种\n能够查看部分 排行榜\n能够完全访问「茶话会」版块", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n能够发起求种\n能够查看部分排行榜\n能够完全访问「茶话会」版块", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 556, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.398891", + "updated_at": "2023-01-30 14:59:33.433484", "level_id": 3, "level": "PowerUser", "days": 2, "uploaded": "0", "downloaded": "200GB", - "bonus": 1, "score": 0, "ratio": 1.2, "torrents": 1, - "rights": "享有低级别所有权限\n能够发送 邀请,首次升级赠送 1 枚永久 邀请\n发邀至少间隔 1 周\n能够佩戴 1 枚 印记\n能够创建 1 个私人 合集\n能够访问论坛的「求邀区」「发邀区」「Power User」版块\n能够完全访问 排行榜\n免疫 账号不活跃(保号)", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n能够发送邀请,首次升级赠送1枚永久邀请\n发邀至少间隔1周\n能够佩戴1枚印记\n能够创建1个私人合集\n能够访问论坛的「求邀区」「发邀区」「PowerUser」版块\n能够完全访问排行榜\n免疫账号不活跃(保号)", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1 }, { "id": 557, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.402044", + "updated_at": "2023-01-30 14:59:33.436710", "level_id": 4, "level": "Elite", "days": 4, "uploaded": "0", "downloaded": "500GB", - "bonus": 25, "score": 0, "ratio": 1.2, "torrents": 25, - "rights": "享有低级别所有权限\n首次升级赠送 1 枚永久 邀请\n能够佩戴 2 枚 印记\n能够创建 2 个私人 合集\n能够访问论坛的「Elite」版块\n能够 检查 自己发布的种子\n能够 编辑 所有种子", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n首次升级赠送1枚永久邀请\n能够佩戴2枚印记\n能够创建2个私人合集\n能够访问论坛的「Elite」版块\n能够检查自己发布的种子\n能够编辑所有种子", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 25 }, { "id": 558, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.405078", + "updated_at": "2023-01-30 14:59:33.439888", "level_id": 5, "level": "TorrentMaster", "days": 8, "uploaded": "0", "downloaded": "1TB", - "bonus": 100, "score": 0, "ratio": 1.2, "torrents": 100, - "rights": "享有低级别所有权限\n首次升级赠送 2 枚永久 邀请\n每月获赠 1 枚临时邀请(有效期 2 周)\n发邀至少间隔 72 小时\n能够佩戴 3 枚 印记\n能够创建 3 个私人 合集\n能够访问论坛的「Torrent Master」版块\n能够在 商城 购买「自定义头衔(不允许 BBCode)」", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n首次升级赠送2枚永久邀请\n每月获赠1枚临时邀请(有效期2周)\n发邀至少间隔72小时\n能够佩戴3枚印记\n能够创建3个私人合集\n能够访问论坛的「TorrentMaster」版块\n能够在商城购买「自定义头衔(不允许BBCode)」", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 100 }, { "id": 559, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.408028", + "updated_at": "2023-01-30 14:59:33.442917", "level_id": 6, "level": "PowerTorrentMaster", "days": 12, "uploaded": "0", "downloaded": "2TB", - "bonus": 250, "score": 0, "ratio": 1.2, "torrents": 250, - "rights": "享有低级别所有权限\n首次升级赠送 2 枚永久 邀请\n每月获赠 2 枚临时邀请(有效期 2 周)\n能够佩戴 4 枚 印记\n能够创建 4 个私人 合集\n能够 检查 所有种子", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n首次升级赠送2枚永久邀请\n每月获赠2枚临时邀请(有效期2周)\n能够佩戴4枚印记\n能够创建4个私人合集\n能够检查所有种子", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 250 }, { "id": 560, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.411162", + "updated_at": "2023-01-30 14:59:33.446435", "level_id": 7, "level": "EliteTorrentMaster", "days": 16, "uploaded": "0", "downloaded": "5TB", - "bonus": 500, "score": 0, "ratio": 1.2, "torrents": 500, - "rights": "享有低级别所有权限\n首次升级赠送 3 枚永久 邀请\n每月获赠 3 枚临时邀请(有效期 2 周)\n无发邀间隔\n能够佩戴 5 枚 印记\n能够创建 5 个私人 合集\n能够访问论坛的「Elite Torrent Master」版块\n能够在 商城 购买「自定义头衔(允许 BBCode)」", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n首次升级赠送3枚永久邀请\n每月获赠3枚临时邀请(有效期2周)\n无发邀间隔\n能够佩戴5枚印记\n能够创建5个私人合集\n能够访问论坛的「EliteTorrentMaster」版块\n能够在商城购买「自定义头衔(允许BBCode)」", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 500 }, { "id": 561, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.413948", + "updated_at": "2023-01-30 14:59:33.449498", "level_id": 8, "level": "Guru", "days": 20, "uploaded": "0", "downloaded": "10TB", - "bonus": 1000, "score": 0, "ratio": 1.2, "torrents": 1000, - "rights": "享有低级别所有权限\n拥有无限 邀请\n能够佩戴 6 枚 印记\n能够创建 6 个私人 合集\n能够访问论坛的「Guru」版块\n能够查看 日志", - "site_id": "https://greatposterwall.com/" + "rights": "享有低级别所有权限\n拥有无限邀请\n能够佩戴6枚印记\n能够创建6个私人合集\n能够访问论坛的「Guru」版块\n能够查看日志", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1000 }, { "id": 562, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.417030", + "updated_at": "2023-01-30 14:59:33.452810", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "对站点做过特殊贡献或特邀会员。由管理人员选出。禁止任何人索要 VIP!", - "site_id": "https://greatposterwall.com/" + "rights": "对站点做过特殊贡献或特邀会员。由管理人员选出。禁止任何人索要VIP!", + "site_id": 29, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 563, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.419899", + "updated_at": "2023-01-30 14:59:33.455892", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 564, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.422938", + "updated_at": "2023-01-30 14:59:33.459116", "level_id": 2, "level": "PowerUser", "days": 1, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 565, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.426088", + "updated_at": "2023-01-30 14:59:33.462037", "level_id": 3, "level": "EliteUser", "days": 2, "uploaded": "0", "downloaded": "150GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 566, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.428971", + "updated_at": "2023-01-30 14:59:33.465280", "level_id": 4, "level": "CrazyUser", "days": 4, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 567, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.432157", + "updated_at": "2023-01-30 14:59:33.468471", "level_id": 5, "level": "InsaneUser", "days": 8, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 568, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.435141", + "updated_at": "2023-01-30 14:59:33.471866", "level_id": 6, "level": "VeteranUser", "days": 16, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 569, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.438287", + "updated_at": "2023-01-30 14:59:33.475015", "level_id": 7, "level": "ExtremeUser", "days": 24, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 570, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.441127", + "updated_at": "2023-01-30 14:59:33.478140", "level_id": 8, "level": "UltimateUser", "days": 36, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 571, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.444132", + "updated_at": "2023-01-30 14:59:33.481354", "level_id": 9, "level": "NexusMaster", "days": 52, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "无", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 572, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.447108", + "updated_at": "2023-01-30 14:59:33.484406", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。(任何索取客卿等级的要求将被自动无视)", - "site_id": "https://ptsbao.club/" + "site_id": 18, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 573, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.449967", + "updated_at": "2023-01-30 14:59:33.487836", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://piggo.me/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 574, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.453014", + "updated_at": "2023-01-30 14:59:33.491084", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "100GB", - "bonus": 40000, "score": 0, "ratio": 2, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://piggo.me/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 40000 }, { "id": 575, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.455791", + "updated_at": "2023-01-30 14:59:33.494359", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "300GB", - "bonus": 80000, "score": 0, "ratio": 2.6, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://piggo.me/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 80000 }, { "id": 576, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.458809", + "updated_at": "2023-01-30 14:59:33.497437", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 150000, "score": 0, "ratio": 3, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://piggo.me/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 150000 }, { "id": 577, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.461873", + "updated_at": "2023-01-30 14:59:33.500680", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 250000, "score": 0, "ratio": 3.6, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://piggo.me/" + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 250000 }, { "id": 578, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.465205", + "updated_at": "2023-01-30 14:59:33.503598", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2TB", - "bonus": 400000, "score": 0, "ratio": 4, "torrents": 0, "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。", - "site_id": "https://piggo.me/" + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 400000 }, { "id": 579, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.468207", + "updated_at": "2023-01-30 14:59:33.506905", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3TB", - "bonus": 600000, "score": 0, "ratio": 4.6, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://piggo.me/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 600000 }, { "id": 580, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.471195", + "updated_at": "2023-01-30 14:59:33.510164", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "4TB", - "bonus": 800000, "score": 0, "ratio": 5, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://piggo.me/" + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 800000 }, { "id": 581, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.474421", + "updated_at": "2023-01-30 14:59:33.513569", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "6TB", - "bonus": 1000000, "score": 0, "ratio": 6, "torrents": 0, - "rights": "得到十个邀请名额。Nexus Master 及以上用户会永远保留账号", - "site_id": "https://piggo.me/" + "rights": "得到十个邀请名额。NexusMaster 及以上用户会永远保留账号", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 1000000 }, { "id": 582, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.477394", + "updated_at": "2023-01-30 14:59:33.516883", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://piggo.me/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 2, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 583, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.480771", + "updated_at": "2023-01-30 14:59:33.520249", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "默认的新用户等级。无法提交种子候选,无法对候选投票,无法使用道具,无法打开签名和个性化称号,不能直接发种,不能查看排行榜,处于熟悉规则学习阶段。", - "site_id": "https://hdchina.org/" + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 584, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.483897", + "updated_at": "2023-01-30 14:59:33.523874", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, "rights": "享有群众演员(User)的所有权限,可以使用道具,可以打开签名和个性化称号,不能直接发种(暂时下调至PU),不能查看排行榜。", - "site_id": "https://hdchina.org/" + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 585, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.487189", + "updated_at": "2023-01-30 14:59:33.527322", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2, "torrents": 0, - "rights": "享有龙套(Power User)的所有权限,可以在候选区投票,可以在论坛建议区发帖,可以上传字幕,可以删除自己上传的字幕。", - "site_id": "https://hdchina.org/" + "rights": "享有龙套(PowerUser)的所有权限,可以在候选区投票,可以在论坛建议区发帖,可以上传字幕,可以删除自己上传的字幕。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 586, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.490274", + "updated_at": "2023-01-30 14:59:33.530646", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 2.5, "torrents": 0, - "rights": "享有主演(Elite User)的所有权限,可以查看排行榜,可以使用挂起功能,可在种子区观看到当前下载活动进度条,可以查看当前自己在全站中的流量排名,可以进入邀请区。", - "site_id": "https://hdchina.org/" + "rights": "享有主演(EliteUser)的所有权限,可以查看排行榜,可以使用挂起功能,可在种子区观看到当前下载活动进度条,可以查看当前自己在全站中的流量排名,可以进入邀请区。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 587, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.493738", + "updated_at": "2023-01-30 14:59:33.534013", "level_id": 5, "level": "InsaneUser", "days": 20, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "享有大腕(Crazy User)的所有权限,并可以直接发布种子,无需候选。", - "site_id": "https://hdchina.org/" + "rights": "享有大腕(CrazyUser)的所有权限,并可以直接发布种子,无需候选。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 588, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.496878", + "updated_at": "2023-01-30 14:59:33.537386", "level_id": 6, "level": "VeteranUser", "days": 25, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 4, "torrents": 0, - "rights": "享有经纪人(Insane User)的所有权限,可以在个人资料内隐藏个人信息,可以匿名做种。", - "site_id": "https://hdchina.org/" + "rights": "享有经纪人(InsaneUser)的所有权限,可以在个人资料内隐藏个人信息,可以匿名做种。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 589, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.500060", + "updated_at": "2023-01-30 14:59:33.540645", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "享有导演(Veteran User)的所有权限,可以发送邀请,可以查看其它会员种子历史,可以更新IMDb信息。", - "site_id": "https://hdchina.org/" + "rights": "享有导演(VeteranUser)的所有权限,可以发送邀请,可以查看其它会员种子历史,可以更新IMDb信息。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 590, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.503251", + "updated_at": "2023-01-30 14:59:33.544191", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 0, "ratio": 6, "torrents": 0, - "rights": "享有制片人(Extreme User)的所有权限,首次升级该级别可自动获得2枚邀请名额。账号挂起永久保留,未挂起的情况下可以保留50周。取消一个月只能发送一个邀请的限制。", - "site_id": "https://hdchina.org/" + "rights": "享有制片人(ExtremeUser)的所有权限,首次升级该级别可自动获得2枚邀请名额。账号挂起永久保留,未挂起的情况下可以保留50周。取消一个月只能发送一个邀请的限制。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 591, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.506308", + "updated_at": "2023-01-30 14:59:33.547574", "level_id": 9, "level": "NexusMaster", "days": 50, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 0, "ratio": 8, "torrents": 0, - "rights": "享有国际巨星(Ultimate User)的所有权限,首次升级该级别可自动获得3枚邀请名额,账号永久保存(无需挂起)。", - "site_id": "https://hdchina.org/" + "rights": "享有国际巨星(UltimateUser)的所有权限,首次升级该级别可自动获得3枚邀请名额,账号永久保存(无需挂起)。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 592, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.509552", + "updated_at": "2023-01-30 14:59:33.551099", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "享有双倍积分特权。和影业帝国(Nexus Master)拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdchina.org/" + "rights": "享有双倍积分特权。和影业帝国(NexusMaster)拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 56, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 593, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.512724", + "updated_at": "2023-01-30 14:59:33.554430", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://club.hares.top/" + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 594, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.516049", + "updated_at": "2023-01-30 14:59:33.557783", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 20000, "ratio": 2, "torrents": 0, - "rights": "可以在邀请区回复;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜。", - "site_id": "https://club.hares.top/" + "rights": "可以在邀请区回复;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜。", + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 595, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.519099", + "updated_at": "2023-01-30 14:59:33.561094", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "350GB", - "bonus": 0, "score": 50000, "ratio": 2.5, "torrents": 0, - "rights": "可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://club.hares.top/" + "rights": "可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 596, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.522382", + "updated_at": "2023-01-30 14:59:33.564584", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 200000, "ratio": 3, "torrents": 0, - "rights": "可以直接发布种子;可以发送邀请;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://club.hares.top/" + "rights": "可以直接发布种子;可以发送邀请;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 597, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.525473", + "updated_at": "2023-01-30 14:59:33.567712", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 400000, "ratio": 3.5, "torrents": 0, "rights": "得到两个邀请名额;可以查看普通日志。", - "site_id": "https://club.hares.top/" + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 598, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.528681", + "updated_at": "2023-01-30 14:59:33.571116", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 600000, "ratio": 4, "torrents": 0, "rights": "得到四个邀请名额;可以查看其它用户的评论、帖子历史。", - "site_id": "https://club.hares.top/" + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 599, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.531656", + "updated_at": "2023-01-30 14:59:33.574488", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 800000, "ratio": 4.5, "torrents": 0, - "rights": "得到六个邀请名额;可以更新过期的外部信息;可以查看 Extreme User 论坛。Extreme User 用户封存后将永远保留账号。", - "site_id": "https://club.hares.top/" + "rights": "得到六个邀请名额;可以更新过期的外部信息;可以查看ExtremeUser论坛。ExtremeUser 用户封存后将永远保留账号。", + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 600, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.534939", + "updated_at": "2023-01-30 14:59:33.577791", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 1000000, "ratio": 5, "torrents": 0, "rights": "得到八个邀请名额。", - "site_id": "https://club.hares.top/" + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 601, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.538104", + "updated_at": "2023-01-30 14:59:33.581094", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 1200000, "ratio": 5.5, "torrents": 0, - "rights": "得到十个邀请名额。Nexus Master 用户会永远保留账号。", - "site_id": "https://club.hares.top/" + "rights": "得到十个邀请名额。NexusMaster 用户会永远保留账号。", + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 602, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.541371", + "updated_at": "2023-01-30 14:59:33.584507", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。期间免除下载量,免除 HR。", - "site_id": "https://club.hares.top/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。期间免除下载量,免除HR。", + "site_id": 30, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 603, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.544537", + "updated_at": "2023-01-30 14:59:33.587823", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://www.hitpt.com/" + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 604, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.547549", + "updated_at": "2023-01-30 14:59:33.591250", "level_id": 2, "level": "PowerUser", "days": 1, "uploaded": "0", "downloaded": "10GB", - "bonus": 0, "score": 0, "ratio": 1.5, "torrents": 0, - "rights": "可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.hitpt.com/" + "rights": "可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 605, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.550879", + "updated_at": "2023-01-30 14:59:33.594474", "level_id": 3, "level": "EliteUser", "days": 1, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://www.hitpt.com/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 606, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.553937", + "updated_at": "2023-01-30 14:59:33.598028", "level_id": 4, "level": "CrazyUser", "days": 4, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到一个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://www.hitpt.com/" + "rights": "得到一个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 607, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.557028", + "updated_at": "2023-01-30 14:59:33.601157", "level_id": 5, "level": "InsaneUser", "days": 6, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://www.hitpt.com/" + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 608, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.560125", + "updated_at": "2023-01-30 14:59:33.604569", "level_id": 6, "level": "VeteranUser", "days": 8, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到二个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://www.hitpt.com/" + "rights": "得到二个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 609, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.563571", + "updated_at": "2023-01-30 14:59:33.607687", "level_id": 7, "level": "ExtremeUser", "days": 10, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://www.hitpt.com/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 610, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.566677", + "updated_at": "2023-01-30 14:59:33.611011", "level_id": 8, "level": "UltimateUser", "days": 20, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到三个邀请名额。", - "site_id": "https://www.hitpt.com/" + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 611, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.569839", + "updated_at": "2023-01-30 14:59:33.614237", "level_id": 9, "level": "NexusMaster", "days": 50, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.hitpt.com/" + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 612, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.572941", + "updated_at": "2023-01-30 14:59:33.617540", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.hitpt.com/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 19, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 613, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.576236", + "updated_at": "2023-01-30 14:59:33.620748", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", - "site_id": "http://leaves.red/" + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 614, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.579233", + "updated_at": "2023-01-30 14:59:33.623886", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "http://leaves.red/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 615, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.582169", + "updated_at": "2023-01-30 14:59:33.627090", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "http://leaves.red/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 616, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.585252", + "updated_at": "2023-01-30 14:59:33.630164", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "http://leaves.red/" + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 617, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.588322", + "updated_at": "2023-01-30 14:59:33.633411", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "http://leaves.red/" + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 618, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.591575", + "updated_at": "2023-01-30 14:59:33.636369", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "http://leaves.red/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 619, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.594501", + "updated_at": "2023-01-30 14:59:33.639570", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "http://leaves.red/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 620, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.597633", + "updated_at": "2023-01-30 14:59:33.642702", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "http://leaves.red/" + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 621, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.600567", + "updated_at": "2023-01-30 14:59:33.646113", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "http://leaves.red/" + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 622, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.603575", + "updated_at": "2023-01-30 14:59:33.649126", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "http://leaves.red/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 71, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 623, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.606650", + "updated_at": "2023-01-30 14:59:33.652442", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 624, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.609603", + "updated_at": "2023-01-30 14:59:33.655533", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 50000, "ratio": 1, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子; 可以删除自己上传的字幕。", - "site_id": "https://hdfans.org/" + "rights": "得到一个邀请名额;可以直接发布种子;可以删除自己上传的字幕。", + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 625, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.612734", + "updated_at": "2023-01-30 14:59:33.658702", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 100000, "ratio": 1.5, "torrents": 0, "rights": "权限同上。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 626, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.615534", + "updated_at": "2023-01-30 14:59:33.661828", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "256GB", - "bonus": 0, "score": 250000, "ratio": 2, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 627, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.618780", + "updated_at": "2023-01-30 14:59:33.664918", "level_id": 5, "level": "InsaneUser", "days": 30, "uploaded": "0", "downloaded": "512GB", - "bonus": 0, "score": 400000, "ratio": 2.5, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 628, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.621660", + "updated_at": "2023-01-30 14:59:33.668121", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 600000, "ratio": 3, "torrents": 0, "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 629, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.624827", + "updated_at": "2023-01-30 14:59:33.671082", "level_id": 7, "level": "ExtremeUser", "days": 50, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 800000, "ratio": 3.5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。Extreme User及以上用户会永远保留账号。", - "site_id": "https://hdfans.org/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。ExtremeUser及以上用户会永远保留账号。", + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 630, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.627894", + "updated_at": "2023-01-30 14:59:33.674352", "level_id": 8, "level": "UltimateUser", "days": 60, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1000000, "ratio": 4, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 631, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.630743", + "updated_at": "2023-01-30 14:59:33.677315", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "10TB", - "bonus": 0, "score": 1688888, "ratio": 4.5, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://hdfans.org/" + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 632, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.633766", + "updated_at": "2023-01-30 14:59:33.680542", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdfans.org/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 6, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 633, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.636622", + "updated_at": "2023-01-30 14:59:33.683547", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://zmpt.cc/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 634, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.639746", + "updated_at": "2023-01-30 14:59:33.686667", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://zmpt.cc/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 635, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.642669", + "updated_at": "2023-01-30 14:59:33.689739", "level_id": 3, "level": "EliteUser", "days": 7, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://zmpt.cc/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 636, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.645688", + "updated_at": "2023-01-30 14:59:33.692800", "level_id": 4, "level": "CrazyUser", "days": 10, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://zmpt.cc/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 637, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.648690", + "updated_at": "2023-01-30 14:59:33.696086", "level_id": 5, "level": "InsaneUser", "days": 16, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://zmpt.cc/" + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 638, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.651538", + "updated_at": "2023-01-30 14:59:33.699078", "level_id": 6, "level": "VeteranUser", "days": 20, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://zmpt.cc/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 639, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.654584", + "updated_at": "2023-01-30 14:59:33.702300", "level_id": 7, "level": "ExtremeUser", "days": 30, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://zmpt.cc/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 640, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.657504", + "updated_at": "2023-01-30 14:59:33.705264", "level_id": 8, "level": "UltimateUser", "days": 30, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://zmpt.cc/" + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 641, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.660538", + "updated_at": "2023-01-30 14:59:33.708558", "level_id": 9, "level": "NexusMaster", "days": 30, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://zmpt.cc/" + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 642, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.663328", + "updated_at": "2023-01-30 14:59:33.711539", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级", - "site_id": "https://zmpt.cc/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级", + "site_id": 65, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 643, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.666290", + "updated_at": "2023-01-30 14:59:33.714872", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能通过候选发布种子。", - "site_id": "https://www.nicept.net/" + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 644, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.669295", + "updated_at": "2023-01-30 14:59:33.718136", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.nicept.net/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 645, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.672229", + "updated_at": "2023-01-30 14:59:33.721374", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://www.nicept.net/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 646, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.675270", + "updated_at": "2023-01-30 14:59:33.725169", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://www.nicept.net/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 647, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.678230", + "updated_at": "2023-01-30 14:59:33.728479", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://www.nicept.net/" + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 648, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.681405", + "updated_at": "2023-01-30 14:59:33.732061", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://www.nicept.net/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 649, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.684495", + "updated_at": "2023-01-30 14:59:33.735236", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://www.nicept.net/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 650, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.687786", + "updated_at": "2023-01-30 14:59:33.738707", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1536GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.nicept.net/" + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 651, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.690861", + "updated_at": "2023-01-30 14:59:33.742005", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3072GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://www.nicept.net/" + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 652, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.693978", + "updated_at": "2023-01-30 14:59:33.745749", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.nicept.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 31, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 653, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.697157", + "updated_at": "2023-01-30 14:59:33.749067", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://pt.soulvoice.club/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 654, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.700156", + "updated_at": "2023-01-30 14:59:33.752600", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://pt.soulvoice.club/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 655, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.703663", + "updated_at": "2023-01-30 14:59:33.755979", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://pt.soulvoice.club/" + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 656, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.706859", + "updated_at": "2023-01-30 14:59:33.759312", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://pt.soulvoice.club/" + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 657, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.710122", + "updated_at": "2023-01-30 14:59:33.762529", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pt.soulvoice.club/" + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 658, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.713174", + "updated_at": "2023-01-30 14:59:33.766003", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://pt.soulvoice.club/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 659, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.716676", + "updated_at": "2023-01-30 14:59:33.769293", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://pt.soulvoice.club/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 660, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.719903", + "updated_at": "2023-01-30 14:59:33.772707", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1536GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://pt.soulvoice.club/" + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 661, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.723149", + "updated_at": "2023-01-30 14:59:33.775909", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3072GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://pt.soulvoice.club/" + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 662, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.726295", + "updated_at": "2023-01-30 14:59:33.779259", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pt.soulvoice.club/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 20, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 663, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.729490", + "updated_at": "2023-01-30 14:59:33.782564", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://www.3wmg.com/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 664, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.732571", + "updated_at": "2023-01-30 14:59:33.785930", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "100GB", - "bonus": 0, "score": 0, "ratio": 5, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.3wmg.com/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 665, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.735628", + "updated_at": "2023-01-30 14:59:33.789116", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://www.3wmg.com/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 666, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.738943", + "updated_at": "2023-01-30 14:59:33.792655", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://www.3wmg.com/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 667, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.742039", + "updated_at": "2023-01-30 14:59:33.795871", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://www.3wmg.com/" + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 668, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.745316", + "updated_at": "2023-01-30 14:59:33.799329", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://www.3wmg.com/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 669, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.748403", + "updated_at": "2023-01-30 14:59:33.802455", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "5TB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://www.3wmg.com/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 670, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.751586", + "updated_at": "2023-01-30 14:59:33.805927", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.3wmg.com/" + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 671, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.754751", + "updated_at": "2023-01-30 14:59:33.809282", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "15TB", - "bonus": 0, "score": 0, "ratio": 3, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://www.3wmg.com/" + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 672, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.758240", + "updated_at": "2023-01-30 14:59:33.812717", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://www.3wmg.com/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 28, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 673, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.761281", + "updated_at": "2023-01-30 14:59:33.815950", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新注册用户拥有 250GB 的初始上传流量\n可以正常下载 / 上传,访问论坛", - "site_id": "https://monikadesign.uk/" + "rights": "新注册用户拥有250GB的初始上传流量\n可以正常下载/上传,访问论坛", + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 674, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.764455", + "updated_at": "2023-01-30 14:59:33.819399", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "1TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "访问邀请区", - "site_id": "https://monikadesign.uk/" + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 675, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.767601", + "updated_at": "2023-01-30 14:59:33.822541", "level_id": 3, "level": "SuperUser", "days": 9, "uploaded": "5TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "同上", - "site_id": "https://monikadesign.uk/" + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 676, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.770815", + "updated_at": "2023-01-30 14:59:33.825787", "level_id": 4, "level": "ExtremeUser", "days": 13, "uploaded": "20TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "自动通过候选", - "site_id": "https://monikadesign.uk/" + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 677, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.773889", + "updated_at": "2023-01-30 14:59:33.828917", "level_id": 5, "level": "InsaneUser", "days": 26, "uploaded": "50TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "同上", - "site_id": "https://monikadesign.uk/" + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 678, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.776939", + "updated_at": "2023-01-30 14:59:33.831896", "level_id": 6, "level": "Veteran", "days": 52, "uploaded": "100TB", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 1, "torrents": 0, "rights": "个人全局双倍上传", - "site_id": "https://monikadesign.uk/" + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 679, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.780232", + "updated_at": "2023-01-30 14:59:33.835244", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "MonikaDesign 的尊贵 VIP", - "site_id": "https://monikadesign.uk/" + "rights": "MonikaDesign的尊贵VIP", + "site_id": 79, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 680, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.783138", + "updated_at": "2023-01-30 14:59:33.838303", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "http://hdmayi.com/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 681, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.786322", + "updated_at": "2023-01-30 14:59:33.841690", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 20000, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "http://hdmayi.com/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 682, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.789292", + "updated_at": "2023-01-30 14:59:33.844662", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 40000, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "http://hdmayi.com/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 683, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.792422", + "updated_at": "2023-01-30 14:59:33.848161", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 80000, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "http://hdmayi.com/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 684, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.795342", + "updated_at": "2023-01-30 14:59:33.851442", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 120000, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "http://hdmayi.com/" + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 685, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.798487", + "updated_at": "2023-01-30 14:59:33.854808", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 200000, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "http://hdmayi.com/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 686, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.801692", + "updated_at": "2023-01-30 14:59:33.857842", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 300000, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "http://hdmayi.com/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 687, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.804576", + "updated_at": "2023-01-30 14:59:33.861151", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 400000, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "http://hdmayi.com/" + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 688, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.807675", + "updated_at": "2023-01-30 14:59:33.864234", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "http://hdmayi.com/" + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 689, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.810503", + "updated_at": "2023-01-30 14:59:33.867475", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "http://hdmayi.com/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 11, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 690, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.813666", + "updated_at": "2023-01-30 14:59:33.870560", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用戶的預設級別。只能在每周六中午 12 點至每周日晚上 11 點 59 分發布種子。", - "site_id": "https://discfan.net/" + "rights": "新用戶的預設級別。只能在每周六中午12點至每周日晚上11點59分發布種子。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 691, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.816638", + "updated_at": "2023-01-30 14:59:33.873633", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一個邀請名額;可以直接發布種子;可以檢視 NFO 文件;可以檢視用戶清單;可以要求續種; 可以傳送邀請; 可以檢視排行榜;可以檢視其他用戶的種子曆史 (如果用戶隱私等級未設定為 \"強\"); 可以移除自己上傳的字幕。", - "site_id": "https://discfan.net/" + "rights": "得到一個邀請名額;可以直接發布種子;可以檢視NFO文件;可以檢視用戶清單;可以要求續種;可以傳送邀請;可以檢視排行榜;可以檢視其他用戶的種子曆史(如果用戶隱私等級未設定為\"強\");可以移除自己上傳的字幕。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 692, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.819747", + "updated_at": "2023-01-30 14:59:33.876808", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用戶封存賬號后不會被移除。", - "site_id": "https://discfan.net/" + "rights": "EliteUser 及以上用戶封存賬號后不會被移除。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 693, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.822666", + "updated_at": "2023-01-30 14:59:33.879760", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到兩個邀請名額;可以在做種 / 下載 / 發布的時候選取匿名型態。", - "site_id": "https://discfan.net/" + "rights": "得到兩個邀請名額;可以在做種/下載/發布的時候選取匿名型態。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 694, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.825641", + "updated_at": "2023-01-30 14:59:33.883009", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以檢視普通日誌。", - "site_id": "https://discfan.net/" + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 695, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.828778", + "updated_at": "2023-01-30 14:59:33.886027", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三個邀請名額;可以檢視其他用戶的評論、帖子曆史。Veteran User 及以上用戶會永遠保留賬號。", - "site_id": "https://discfan.net/" + "rights": "得到三個邀請名額;可以檢視其他用戶的評論、帖子曆史。VeteranUser 及以上用戶會永遠保留賬號。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 696, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.831662", + "updated_at": "2023-01-30 14:59:33.889263", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新過期的外部資訊;可以檢視 Extreme User 論壇。", - "site_id": "https://discfan.net/" + "rights": "可以更新過期的外部資訊;可以檢視ExtremeUser論壇。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 697, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.834659", + "updated_at": "2023-01-30 14:59:33.892208", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五個邀請名額。", - "site_id": "https://discfan.net/" + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 698, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.837486", + "updated_at": "2023-01-30 14:59:33.895400", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十個邀請名額。", - "site_id": "https://discfan.net/" + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 699, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.840554", + "updated_at": "2023-01-30 14:59:33.898447", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master擁有相同許可權并被認為是精英成員。免除自動降級。", - "site_id": "https://discfan.net/" + "rights": "和NexusMaster擁有相同許可權并被認為是精英成員。免除自動降級。", + "site_id": 41, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 700, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.843441", + "updated_at": "2023-01-30 14:59:33.901535", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别;可以请求续种。", - "site_id": "https://audiences.me/" + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 701, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.846253", + "updated_at": "2023-01-30 14:59:33.904816", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 100000, "ratio": 2, "torrents": 0, - "rights": "可以查看 NFO 文档;可以查看用户列表; 可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕;发布 5 种通过候选后可直接发布种子。", - "site_id": "https://audiences.me/" + "rights": "可以查看NFO文档;可以查看用户列表;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕;发布5种通过候选后可直接发布种子。", + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 702, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.849291", + "updated_at": "2023-01-30 14:59:33.907777", "level_id": 3, "level": "EliteUser", "days": 15, "uploaded": "0", "downloaded": "240GB", - "bonus": 0, "score": 180000, "ratio": 2.5, "torrents": 0, - "rights": "同年轻气盛 (Power User)", - "site_id": "https://audiences.me/" + "rights": "同年轻气盛(PowerUser)", + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 703, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.852082", + "updated_at": "2023-01-30 14:59:33.911001", "level_id": 4, "level": "CrazyUser", "days": 24, "uploaded": "0", "downloaded": "400GB", - "bonus": 0, "score": 320000, "ratio": 3, "torrents": 0, "rights": "可以查看排行榜。", - "site_id": "https://audiences.me/" + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 704, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.855125", + "updated_at": "2023-01-30 14:59:33.914016", "level_id": 5, "level": "InsaneUser", "days": 40, "uploaded": "0", "downloaded": "600GB", - "bonus": 0, "score": 480000, "ratio": 3.5, "torrents": 0, - "rights": "同街头霸王 (Crazy User)", - "site_id": "https://audiences.me/" + "rights": "同街头霸王(CrazyUser)", + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 705, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.858077", + "updated_at": "2023-01-30 14:59:33.917176", "level_id": 6, "level": "VeteranUser", "days": 60, "uploaded": "0", "downloaded": "900GB", - "bonus": 0, "score": 660000, "ratio": 4, "torrents": 0, "rights": "可以查看其它用户的评论、帖子历史。", - "site_id": "https://audiences.me/" + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 706, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.861224", + "updated_at": "2023-01-30 14:59:33.920258", "level_id": 7, "level": "ExtremeUser", "days": 80, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 880000, "ratio": 4.5, "torrents": 0, - "rights": "可以更新过期的外部信息。头号玩家 (Extreme User) 及以上用户会永远保留账号。", - "site_id": "https://audiences.me/" + "rights": "可以更新过期的外部信息。头号玩家(ExtremeUser) 及以上用户会永远保留账号。", + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 707, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.864233", + "updated_at": "2023-01-30 14:59:33.923764", "level_id": 8, "level": "UltimateUser", "days": 100, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1080000, "ratio": 4.5, "torrents": 0, - "rights": "同头号玩家 (Extreme User)", - "site_id": "https://audiences.me/" + "rights": "同头号玩家(ExtremeUser)", + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 708, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.867017", + "updated_at": "2023-01-30 14:59:33.926955", "level_id": 9, "level": "NexusMaster", "days": 112, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 1280000, "ratio": 5, "torrents": 0, - "rights": "同头号玩家 (Extreme User)", - "site_id": "https://audiences.me/" + "rights": "同头号玩家(ExtremeUser)", + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 709, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.869951", + "updated_at": "2023-01-30 14:59:33.930361", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。", - "site_id": "https://audiences.me/" + "site_id": 22, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 710, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.872793", + "updated_at": "2023-01-30 14:59:33.933460", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://pterclub.com/" + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 711, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.875905", + "updated_at": "2023-01-30 14:59:33.936715", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, "rights": "可以直接发布种子;可以查看邀请区;可以请求续种;可以上传字幕和删除自己上传的字幕。", - "site_id": "https://pterclub.com/" + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 712, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.878770", + "updated_at": "2023-01-30 14:59:33.940129", "level_id": 3, "level": "EliteUser", "days": 10, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User可以查看排行榜。", - "site_id": "https://pterclub.com/" + "rights": "EliteUser可以查看排行榜。", + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 713, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.881767", + "updated_at": "2023-01-30 14:59:33.943752", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "可以查看排行榜。", - "site_id": "https://pterclub.com/" + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 714, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.884812", + "updated_at": "2023-01-30 14:59:33.947254", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pterclub.com/" + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 715, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.887857", + "updated_at": "2023-01-30 14:59:33.950533", "level_id": 6, "level": "VeteranUser", "days": 30, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。安哥拉猫 / Veteran User及以上用户封存账号后不会被封禁。", - "site_id": "https://pterclub.com/" + "rights": "可以查看其它用户的评论、帖子历史。安哥拉猫/VeteranUser及以上用户封存账号后不会被封禁。", + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 716, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.891060", + "updated_at": "2023-01-30 14:59:33.954047", "level_id": 7, "level": "ExtremeUser", "days": 35, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息。头号玩家 (Extreme User) 及以上用户会永远保留账号。", - "site_id": "https://pterclub.com/" + "rights": "可以更新过期的外部信息。头号玩家(ExtremeUser) 及以上用户会永远保留账号。", + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 717, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.894116", + "updated_at": "2023-01-30 14:59:33.957278", "level_id": 8, "level": "UltimateUser", "days": 40, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "同上", - "site_id": "https://pterclub.com/" + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 718, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.897590", + "updated_at": "2023-01-30 14:59:33.960882", "level_id": 9, "level": "NexusMaster", "days": 45, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, - "rights": "Nexus Master及以上用户会永远保留账号。", - "site_id": "https://pterclub.com/" + "rights": "NexusMaster及以上用户会永远保留账号。", + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 719, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.900856", + "updated_at": "2023-01-30 14:59:33.963923", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "由管理员仔细斟酌后分配给他们认为对于站点某方面有特殊贡献的用户。", - "site_id": "https://pterclub.com/" + "site_id": 49, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 720, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.904099", + "updated_at": "2023-01-30 14:59:33.966815", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://ptchina.org/" + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 721, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.907236", + "updated_at": "2023-01-30 14:59:33.970271", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 40000, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://ptchina.org/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 722, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.910661", + "updated_at": "2023-01-30 14:59:33.973433", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 80000, "ratio": 1.55, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://ptchina.org/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 723, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.913693", + "updated_at": "2023-01-30 14:59:33.976758", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.05, "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://ptchina.org/" + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 724, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.916929", + "updated_at": "2023-01-30 14:59:33.980275", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 250000, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://ptchina.org/" + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 725, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.920124", + "updated_at": "2023-01-30 14:59:33.983581", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 400000, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://ptchina.org/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 726, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.923267", + "updated_at": "2023-01-30 14:59:33.987157", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 600000, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://ptchina.org/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 727, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.926564", + "updated_at": "2023-01-30 14:59:33.990407", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 800000, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://ptchina.org/" + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 728, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.929549", + "updated_at": "2023-01-30 14:59:33.993853", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 1000000, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://ptchina.org/" + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 729, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.932860", + "updated_at": "2023-01-30 14:59:33.997105", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://ptchina.org/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 13, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 730, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.935979", + "updated_at": "2023-01-30 14:59:34.000529", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://pthome.net/" + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 731, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.939195", + "updated_at": "2023-01-30 14:59:34.003725", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "200GB", - "bonus": 0, "score": 20000, "ratio": 1, "torrents": 0, - "rights": "可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。可以浏览论坛邀请专版。", - "site_id": "https://pthome.net/" + "rights": "可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。可以浏览论坛邀请专版。", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 732, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.942446", + "updated_at": "2023-01-30 14:59:34.007239", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "350GB", - "bonus": 0, "score": 50000, "ratio": 1.1, "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除", - "site_id": "https://pthome.net/" + "rights": "EliteUser 及以上用户封存账号后不会被删除", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 733, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.945797", + "updated_at": "2023-01-30 14:59:34.010445", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 200000, "ratio": 1.2, "torrents": 0, - "rights": "可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://pthome.net/" + "rights": "可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 734, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.948871", + "updated_at": "2023-01-30 14:59:34.014003", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 400000, "ratio": 1.3, "torrents": 0, "rights": "可以查看普通日志", - "site_id": "https://pthome.net/" + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 735, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.952098", + "updated_at": "2023-01-30 14:59:34.017359", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "2TB", - "bonus": 0, "score": 600000, "ratio": 1.5, "torrents": 0, - "rights": "可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://pthome.net/" + "rights": "可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 736, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.955158", + "updated_at": "2023-01-30 14:59:34.020870", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 800000, "ratio": 1.5, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://pthome.net/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 737, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.958403", + "updated_at": "2023-01-30 14:59:34.024199", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1000000, "ratio": 1.7, "torrents": 0, - "rights": "同Extreme User等级权限", - "site_id": "https://pthome.net/" + "rights": "同ExtremeUser等级权限", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 738, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.961600", + "updated_at": "2023-01-30 14:59:34.027692", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "6TB", - "bonus": 0, "score": 1200000, "ratio": 1.8, "torrents": 0, - "rights": "同Extreme User等级权限", - "site_id": "https://pthome.net/" + "rights": "同ExtremeUser等级权限", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 739, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.964925", + "updated_at": "2023-01-30 14:59:34.030891", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://pthome.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 33, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 740, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.968241", + "updated_at": "2023-01-30 14:59:34.034189", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, - "score": 0, - "ratio": 0, - "torrents": 0, - "rights": "新用户的默认级别。只能在每周六中午 12 点至每周日晚上 11 点 59 分发布种子。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 741, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.971452", - "level_id": 2, - "level": "PowerUser", - "days": 4, - "uploaded": "0", - "downloaded": "50GB", - "bonus": 0, - "score": 0, - "ratio": 1.05, - "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以发送邀请; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 742, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.974806", - "level_id": 3, - "level": "EliteUser", - "days": 8, - "uploaded": "0", - "downloaded": "120GB", - "bonus": 0, - "score": 0, - "ratio": 1.55, - "torrents": 0, - "rights": "Elite User 及以上用户封存账号后不会被删除。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 743, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.978006", - "level_id": 4, - "level": "CrazyUser", - "days": 15, - "uploaded": "0", - "downloaded": "300GB", - "bonus": 0, - "score": 0, - "ratio": 2.05, - "torrents": 0, - "rights": "得到两个邀请名额;可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 744, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.981296", - "level_id": 5, - "level": "InsaneUser", - "days": 25, - "uploaded": "0", - "downloaded": "500GB", - "bonus": 0, - "score": 0, - "ratio": 2.55, - "torrents": 0, - "rights": "可以查看普通日志。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 745, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.984337", - "level_id": 6, - "level": "VeteranUser", - "days": 40, - "uploaded": "0", - "downloaded": "750GB", - "bonus": 0, - "score": 0, - "ratio": 3.05, - "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。Veteran User 及以上用户会永远保留账号。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 746, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.987568", - "level_id": 7, - "level": "ExtremeUser", - "days": 60, - "uploaded": "0", - "downloaded": "1TB", - "bonus": 0, - "score": 0, - "ratio": 3.55, - "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 747, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.990502", - "level_id": 8, - "level": "UltimateUser", - "days": 80, - "uploaded": "0", - "downloaded": "1.5TB", - "bonus": 0, - "score": 0, - "ratio": 4.05, - "torrents": 0, - "rights": "得到五个邀请名额。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 748, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.993570", - "level_id": 9, - "level": "NexusMaster", - "days": 100, - "uploaded": "0", - "downloaded": "3TB", - "bonus": 0, - "score": 0, - "ratio": 4.55, - "torrents": 0, - "rights": "得到十个邀请名额。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 749, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.996491", - "level_id": 0, - "level": "VIP", - "days": 0, - "uploaded": "0", - "downloaded": "0", - "bonus": 0, - "score": 0, - "ratio": 0, - "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://hdatmos.club/" - }, - { - "id": 750, - "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:37.999538", - "level_id": 1, - "level": "User", - "days": 0, - "uploaded": "0", - "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", - "site_id": "https://pt.msg.vg/" + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 751, + "id": 741, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.002741", + "updated_at": "2023-01-30 14:59:34.037391", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜可以查看其它用户的种子历史(如果用户隐私等级未设置为“强”)可以删除自己上传的字幕。", - "site_id": "https://pt.msg.vg/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 752, + "id": 742, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.005765", + "updated_at": "2023-01-30 14:59:34.040497", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "Elite User及以上用户封存账号后不会被删除。", - "site_id": "https://pt.msg.vg/" + "rights": "EliteUser 及以上用户封存账号后不会被删除。", + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 753, + "id": 743, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.008937", + "updated_at": "2023-01-30 14:59:34.043785", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://pt.msg.vg/" + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 754, + "id": 744, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.011874", + "updated_at": "2023-01-30 14:59:34.046795", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://pt.msg.vg/" + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 755, + "id": 745, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.015130", + "updated_at": "2023-01-30 14:59:34.050206", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。", - "site_id": "https://pt.msg.vg/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。VeteranUser 及以上用户会永远保留账号。", + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 756, + "id": 746, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.018223", + "updated_at": "2023-01-30 14:59:34.053209", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。ExtremeUser及以上用户会永远保留账号。", - "site_id": "https://pt.msg.vg/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 757, + "id": 747, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.021409", + "updated_at": "2023-01-30 14:59:34.056417", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://pt.msg.vg/" + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 758, + "id": 748, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.024456", + "updated_at": "2023-01-30 14:59:34.059429", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://pt.msg.vg/" + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 759, + "id": 749, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.027512", + "updated_at": "2023-01-30 14:59:34.062619", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级自定发等级。", - "site_id": "https://pt.msg.vg/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 1, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { - "id": 760, + "id": 750, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.030539", + "updated_at": "2023-01-30 14:59:34.065626", + "level_id": 1, + "level": "User", + "days": 0, + "uploaded": "0", + "downloaded": "0", + "score": 0, + "ratio": 0, + "torrents": 0, + "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚上11点59分发布种子。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 751, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.068775", + "level_id": 2, + "level": "PowerUser", + "days": 4, + "uploaded": "0", + "downloaded": "50GB", + "score": 0, + "ratio": 1.05, + "torrents": 0, + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜可以查看其它用户的种子历史(如果用户隐私等级未设置为“强”)可以删除自己上传的字幕。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 752, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.071875", + "level_id": 3, + "level": "EliteUser", + "days": 8, + "uploaded": "0", + "downloaded": "120GB", + "score": 0, + "ratio": 1.55, + "torrents": 0, + "rights": "EliteUser及以上用户封存账号后不会被删除。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 753, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.074998", + "level_id": 4, + "level": "CrazyUser", + "days": 15, + "uploaded": "0", + "downloaded": "300GB", + "score": 0, + "ratio": 2.05, + "torrents": 0, + "rights": "得到两个邀请名额;可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 754, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.078301", + "level_id": 5, + "level": "InsaneUser", + "days": 25, + "uploaded": "0", + "downloaded": "500GB", + "score": 0, + "ratio": 2.55, + "torrents": 0, + "rights": "可以查看普通日志。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 755, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.081288", + "level_id": 6, + "level": "VeteranUser", + "days": 40, + "uploaded": "0", + "downloaded": "750GB", + "score": 0, + "ratio": 3.05, + "torrents": 0, + "rights": "得到三个邀请名额;可以查看其它用户的评论、帖子历史。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 756, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.084662", + "level_id": 7, + "level": "ExtremeUser", + "days": 60, + "uploaded": "0", + "downloaded": "1TB", + "score": 0, + "ratio": 3.55, + "torrents": 0, + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。ExtremeUser及以上用户会永远保留账号。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 757, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.087885", + "level_id": 8, + "level": "UltimateUser", + "days": 80, + "uploaded": "0", + "downloaded": "1.5TB", + "score": 0, + "ratio": 4.05, + "torrents": 0, + "rights": "得到五个邀请名额。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 758, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.091103", + "level_id": 9, + "level": "NexusMaster", + "days": 100, + "uploaded": "0", + "downloaded": "3TB", + "score": 0, + "ratio": 4.55, + "torrents": 0, + "rights": "得到十个邀请名额。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 759, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.094045", + "level_id": 0, + "level": "VIP", + "days": 0, + "uploaded": "0", + "downloaded": "0", + "score": 0, + "ratio": 0, + "torrents": 0, + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级自定发等级。", + "site_id": 14, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 + }, + { + "id": 760, + "created_at": "2023-01-01 12:30:00", + "updated_at": "2023-01-30 14:59:34.097114", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 761, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.033398", + "updated_at": "2023-01-30 14:59:34.100249", "level_id": 2, "level": "PowerUser", "days": 5, "uploaded": "0", "downloaded": "150GB", - "bonus": 0, "score": 100000, "ratio": 2, "torrents": 0, - "rights": "得到一个邀请名额;可以查看用户列表;可以请求续种;可以查看 NFO 文档;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以直接发布种子;可以删除自己上传的字幕。", - "site_id": "https://sharkpt.net/" + "rights": "得到一个邀请名额;可以查看用户列表;可以请求续种;可以查看NFO文档;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以直接发布种子;可以删除自己上传的字幕。", + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 762, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.036645", + "updated_at": "2023-01-30 14:59:34.103276", "level_id": 3, "level": "EliteUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 150000, "ratio": 2.5, "torrents": 0, "rights": "得到两个邀请名额;可以查看排行榜。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 763, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.039695", + "updated_at": "2023-01-30 14:59:34.106250", "level_id": 4, "level": "CrazyUser", "days": 25, "uploaded": "0", "downloaded": "450GB", - "bonus": 0, "score": 300000, "ratio": 3, "torrents": 0, "rights": "得到三个邀请名额;可以购买、发送邀请;可以在做种、下载、发布的时候选择匿名模式。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 764, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.042968", + "updated_at": "2023-01-30 14:59:34.109524", "level_id": 5, "level": "InsaneUser", "days": 40, "uploaded": "0", "downloaded": "600GB", - "bonus": 0, "score": 450000, "ratio": 3.5, "torrents": 0, "rights": "得到四个邀请名额;可以查看普通日志。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 765, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.045845", + "updated_at": "2023-01-30 14:59:34.112510", "level_id": 6, "level": "VeteranUser", "days": 55, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 650000, "ratio": 4, "torrents": 0, "rights": "得到五个邀请名额;可以查看其它用户的评论、帖子历史。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 766, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.048982", + "updated_at": "2023-01-30 14:59:34.115778", "level_id": 7, "level": "ExtremeUser", "days": 70, "uploaded": "0", "downloaded": "1024GB", - "bonus": 0, "score": 800000, "ratio": 4.5, "torrents": 0, - "rights": "得到六个邀请名额;可以更新过期的外部信息。Extreme User 及以上用户会永远保留账号。", - "site_id": "https://sharkpt.net/" + "rights": "得到六个邀请名额;可以更新过期的外部信息。ExtremeUser 及以上用户会永远保留账号。", + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 767, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.051988", + "updated_at": "2023-01-30 14:59:34.118847", "level_id": 8, "level": "UltimateUser", "days": 90, "uploaded": "0", "downloaded": "4TB", - "bonus": 0, "score": 1000000, "ratio": 5, "torrents": 0, "rights": "得到七个邀请名额;可以查看种子结构。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 768, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.055093", + "updated_at": "2023-01-30 14:59:34.122090", "level_id": 9, "level": "NexusMaster", "days": 110, "uploaded": "0", "downloaded": "8TB", - "bonus": 0, "score": 1250000, "ratio": 5, "torrents": 0, "rights": "得到八个邀请名额。", - "site_id": "https://sharkpt.net/" + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 769, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.058299", + "updated_at": "2023-01-30 14:59:34.125105", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级。", - "site_id": "https://sharkpt.net/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级。", + "site_id": 78, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 770, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.061299", + "updated_at": "2023-01-30 14:59:34.128442", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。只能在每周六中午12点至每周日晚,上11点59分发布种子。", - "site_id": "https://www.dragonhd.xyz/" + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 771, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.064503", + "updated_at": "2023-01-30 14:59:34.131852", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额,可以直接发布种子。可以音看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜可以查看其它用户的种子历史(如果用户等级未设置为\"强\"); 可以删除自己上传的字幕。", - "site_id": "https://www.dragonhd.xyz/" + "rights": "得到一个邀请名额,可以直接发布种子。可以音看NFO文档;可以查看用户列表;可以请求续种;可以发送邀请;可以查看排行榜可以查看其它用户的种子历史(如果用户等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 772, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.067424", + "updated_at": "2023-01-30 14:59:34.135028", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "可以访问龙之家邀请区,Ellte user及以上用户封存账号后不会被开除。", - "site_id": "https://www.dragonhd.xyz/" + "rights": "可以访问龙之家邀请区,Ellteuser及以上用户封存账号后不会被开除。", + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 773, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.070440", + "updated_at": "2023-01-30 14:59:34.138292", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, "rights": "得到两个邀请名额,可以在做种/下载/发布的时候选择匿名模式。", - "site_id": "https://www.dragonhd.xyz/" + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 774, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.073387", + "updated_at": "2023-01-30 14:59:34.141460", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://www.dragonhd.xyz/" + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 775, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.076123", + "updated_at": "2023-01-30 14:59:34.144449", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到三个邀请名额;可以查看其它用户的评论、站子历史。Veteran User及以上用户会永远保留账号。", - "site_id": "https://www.dragonhd.xyz/" + "rights": "得到三个邀请名额;可以查看其它用户的评论、站子历史。VeteranUser及以上用户会永远保留账号。", + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 776, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.078887", + "updated_at": "2023-01-30 14:59:34.147812", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看Extreme User论坛。", - "site_id": "https://www.dragonhd.xyz/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。", + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 777, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.082042", + "updated_at": "2023-01-30 14:59:34.150944", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "得到五个邀请名额。", - "site_id": "https://www.dragonhd.xyz/" + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 778, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.084989", + "updated_at": "2023-01-30 14:59:34.154431", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "得到十个邀请名额。", - "site_id": "https://www.dragonhd.xyz/" + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 779, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.088258", + "updated_at": "2023-01-30 14:59:34.157786", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级自定发等级。", - "site_id": "https://www.dragonhd.xyz/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级自定发等级。", + "site_id": 72, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 780, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.091266", + "updated_at": "2023-01-30 14:59:34.161037", "level_id": 1, "level": "User", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, "rights": "新用户的默认级别。", - "site_id": "https://hudbt.hust.edu.cn/" + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 781, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.094535", + "updated_at": "2023-01-30 14:59:34.164330", "level_id": 2, "level": "PowerUser", "days": 4, "uploaded": "0", "downloaded": "50GB", - "bonus": 0, "score": 0, "ratio": 1.05, "torrents": 0, - "rights": "得到一个邀请名额;可以直接发布种子;可以查看 NFO 文档;可以查看用户列表;可以请求续种; 可以查看排行榜;可以查看其它用户的种子历史 (如果用户隐私等级未设置为 \"强\"); 可以删除自己上传的字幕。", - "site_id": "https://hudbt.hust.edu.cn/" + "rights": "得到一个邀请名额;可以直接发布种子;可以查看NFO文档;可以查看用户列表;可以请求续种;可以查看排行榜;可以查看其它用户的种子历史(如果用户隐私等级未设置为\"强\");可以删除自己上传的字幕。", + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 782, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.097731", + "updated_at": "2023-01-30 14:59:34.167760", "level_id": 3, "level": "EliteUser", "days": 8, "uploaded": "0", "downloaded": "120GB", - "bonus": 0, "score": 0, "ratio": 1.55, "torrents": 0, - "rights": "化蛹 (Elite User) 及以上用户封存账号后不会被删除。", - "site_id": "https://hudbt.hust.edu.cn/" + "rights": "化蛹(EliteUser) 及以上用户封存账号后不会被删除。", + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 783, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.100877", + "updated_at": "2023-01-30 14:59:34.171109", "level_id": 4, "level": "CrazyUser", "days": 15, "uploaded": "0", "downloaded": "300GB", - "bonus": 0, "score": 0, "ratio": 2.05, "torrents": 0, - "rights": "得到一个邀请名额; 可以发送邀请(注意:网站会视情况提高或者降低允许发送邀请的最低等级,此处不一定会及时修改);可以在做种 / 下载 / 发布的时候选择匿名模式。", - "site_id": "https://hudbt.hust.edu.cn/" + "rights": "得到一个邀请名额;可以发送邀请(注意:网站会视情况提高或者降低允许发送邀请的最低等级,此处不一定会及时修改);可以在做种/下载/发布的时候选择匿名模式。", + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 784, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.103928", + "updated_at": "2023-01-30 14:59:34.174590", "level_id": 5, "level": "InsaneUser", "days": 25, "uploaded": "0", "downloaded": "500GB", - "bonus": 0, "score": 0, "ratio": 2.55, "torrents": 0, "rights": "可以查看普通日志。", - "site_id": "https://hudbt.hust.edu.cn/" + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 785, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.106995", + "updated_at": "2023-01-30 14:59:34.177849", "level_id": 6, "level": "VeteranUser", "days": 40, "uploaded": "0", "downloaded": "750GB", - "bonus": 0, "score": 0, "ratio": 3.05, "torrents": 0, - "rights": "得到一个邀请名额;可以查看其它用户的评论、帖子历史。翩跹 (Veteran User) 及以上用户会永远保留账号。", - "site_id": "https://hudbt.hust.edu.cn/" + "rights": "得到一个邀请名额;可以查看其它用户的评论、帖子历史。翩跹(VeteranUser) 及以上用户会永远保留账号。", + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 786, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.110052", + "updated_at": "2023-01-30 14:59:34.181247", "level_id": 7, "level": "ExtremeUser", "days": 60, "uploaded": "0", "downloaded": "1TB", - "bonus": 0, "score": 0, "ratio": 3.55, "torrents": 0, - "rights": "可以更新过期的外部信息;可以查看 Extreme User 论坛。(未启用)", - "site_id": "https://hudbt.hust.edu.cn/" + "rights": "可以更新过期的外部信息;可以查看ExtremeUser论坛。(未启用)", + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 787, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.113377", + "updated_at": "2023-01-30 14:59:34.184542", "level_id": 8, "level": "UltimateUser", "days": 80, "uploaded": "0", "downloaded": "1.5TB", - "bonus": 0, "score": 0, "ratio": 4.05, "torrents": 0, "rights": "无", - "site_id": "https://hudbt.hust.edu.cn/" + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 788, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.116499", + "updated_at": "2023-01-30 14:59:34.188031", "level_id": 9, "level": "NexusMaster", "days": 100, "uploaded": "0", "downloaded": "3TB", - "bonus": 0, "score": 0, "ratio": 4.55, "torrents": 0, "rights": "无", - "site_id": "https://hudbt.hust.edu.cn/" + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 }, { "id": 789, "created_at": "2023-01-01 12:30:00", - "updated_at": "2023-01-18 11:41:38.119824", + "updated_at": "2023-01-30 14:59:34.191267", "level_id": 0, "level": "VIP", "days": 0, "uploaded": "0", "downloaded": "0", - "bonus": 0, "score": 0, "ratio": 0, "torrents": 0, - "rights": "和Nexus Master拥有相同权限并被认为是精英成员。免除自动降级自定发等级。", - "site_id": "https://hudbt.hust.edu.cn/" + "rights": "和NexusMaster拥有相同权限并被认为是精英成员。免除自动降级自定发等级。", + "site_id": 90, + "leeches": 0, + "seeding_delta": 0, + "bonus": 0 } ] \ No newline at end of file