CF-839A

A. Arya and Bran
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Bran and his older sister Arya are from the same house. Bran like candies so much, so Arya is going to give him some Candies.

At first, Arya and Bran have 0 Candies. There are n days, at the i-th day, Arya finds ai candies in a box, that is given by the Many-Faced God. Every day she can give Bran at most 8 of her candies. If she don't give him the candies at the same day, they are saved for her and she can give them to him later.

Your task is to find the minimum number of days Arya needs to give Bran k candies before the end of the n-th day. Formally, you need to output the minimum day index to the end of which k candies will be given out (the days are indexed from 1 to n).

Print -1 if she can't give him k candies during n given days.

Input

The first line contains two integers n and k (1 ≤ n ≤ 100, 1 ≤ k ≤ 10000).

The second line contains n integers a1, a2, a3, ..., an (1 ≤ ai ≤ 100).

Output

If it is impossible for Arya to give Bran k candies within n days, print -1.

Otherwise print a single integer — the minimum number of days Arya needs to give Bran k candies before the end of the n-th day.

Examples
input
2 3
1 2
output
2
input
3 17
10 10 10
output
3
input
1 9
10
output
-1
Note

In the first sample, Arya can give Bran 3 candies in 2 days.

In the second sample, Arya can give Bran 17 candies in 3 days, because she can give him at most 8 candies per day.

In the third sample, Arya can't give Bran 9 candies, because she can give him at most 8 candies per day and she must give him the candies within 1 day.

 

 

 

题意:

每天一个数字,数可累积,每天最多减8,求最少需要多少天减值达到k。

 

AC代码:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 
 4 int a[110];
 5 
 6 int main(){
 7     ios::sync_with_stdio(false);
 8     int n,k;
 9     cin>>n>>k;
10     int ans=0,flag=1;
11     for(int i=0;i<n;i++){
12         cin>>a[i];
13         ans+=a[i];
14         k-=min(ans,8);
15         ans-=min(ans,8);
16         if(k<=0){
17             cout<<i+1<<endl;
18             flag=0;
19             break;
20         }
21     }
22     if(flag)
23     cout<<-1<<endl;
24     return 0;
25 } 

 

转载于:https://www.cnblogs.com/Kiven5197/p/7353807.html

2025-05-30 13:31:53.971 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.973 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.975 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.986 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:31:53.986 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:31:55.180 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:31:55.181 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:31:55.181 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:31:55.192 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:31:55.448 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:31:55.450 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:31:55.845 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:31:55.846 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:31:55.846 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:31:55.846 [ERR] libevent call with win32 failed: Invalid argument [WSAEINVAL ] [10022] 2025-05-30 13:32:18.354 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:18.356 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:18.358 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:27.362 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:32:27.362 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:32:28.624 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:28.625 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:32:28.625 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:32:28.626 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:32:29.041 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:29.045 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:29.220 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:29.220 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:29.363 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:32:29.605 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:29.605 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:29.617 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:32:29.876 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:32:29.877 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:32:30.121 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:32:30.148 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:30.149 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:30.445 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:30.445 [NOTICE] new bridge descriptor 'Bridge' (fresh): $23958FC105E58061AFD2DECC61D363F28AB36490~Bridge [ar26PaMvMtnp3TVPVc6VmFRSl/+bMf/59xuRvLdSCQk] at 212.132.102.214 and [2001:db8:259c:faa6:24a9:cce0:c60f:4642] 2025-05-30 13:32:30.618 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:30.619 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:31.059 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:31.060 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:32.101 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:32.101 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:32.707 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:32.707 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:33.164 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:33.164 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:34.181 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:34.182 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:35.212 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:35.213 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:37.207 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:37.208 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:37.739 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:37.740 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:41.253 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:41.254 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:44.903 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:44.981 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:50.660 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.662 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.664 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.672 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:32:50.672 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:32:51.905 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:51.906 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:32:51.906 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:32:51.912 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:32:51.989 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:51.991 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:52.513 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:52.514 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:52.778 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:32:52.881 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:52.882 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:53.048 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:32:53.308 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:32:53.308 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:32:53.362 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:53.362 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:53.572 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:32:53.835 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:54.293 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:54.294 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:54.803 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:54.804 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:55.360 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:55.361 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:57.333 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:57.333 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:57.895 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:57.896 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:00.290 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:00.294 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:02.388 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:33:02.388 [NOTICE] new bridge descriptor 'bauruine' (fresh): $16D0EF186DA080CE7A4968072920E08CA7729AED~bauruine [I/qM7fRZmL/uq60qzGEoQLNxmhleywJ5H/FY3yCHTDI] at 95.214.53.96 and [2001:db8:cb62:8f57:5a43:d9d0:a488:27e2] 2025-05-30 13:33:03.341 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:03.342 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:04.827 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:04.827 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:08.407 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:08.408 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:12.967 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:33:12.970 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:33:12.970 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:33:12.972 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:33:12.977 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:33:12.979 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 95% (circuit_create): Establishing a Tor circuit 2025-05-30 13:33:15.153 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:15.155 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:15.495 [NOTICE] Bootstrapped 100% (done): Done 2025-05-30 13:33:16.258 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:16.258 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:25.182 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:25.183 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:27.540 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:27.540 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:31.203 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:31.205 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:35.633 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:33:39.199 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:33:39.965 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:33:41.032 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:33:42.207 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:42.208 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:44.126 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:33:44.127 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:33:45.180 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:33:47.064 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:33:50.272 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:33:54.208 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:54.209 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:03.144 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:04.875 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:04.875 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:10.471 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.473 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.475 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.482 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:34:10.483 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:34:11.741 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:34:11.741 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:34:11.741 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:34:11.742 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:34:11.817 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:11.819 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:12.338 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:12.339 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:12.588 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:34:12.650 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:12.651 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:12.864 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:34:13.134 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:34:13.135 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:34:13.138 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:13.139 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:13.406 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:34:13.674 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:34:13.689 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:13.690 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:14.221 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:14.221 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:15.676 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:15.678 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:16.161 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:16.163 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:19.217 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:19.219 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:19.537 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:34:19.749 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:19.749 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:25.762 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:25.763 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:27.319 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:27.320 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:32.828 [NOTICE] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits 2025-05-30 13:34:32.828 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:34:33.423 [NOTICE] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits 2025-05-30 13:34:33.423 [NOTICE] Bootstrapped 95% (circuit_create): Establishing a Tor circuit 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:34:33.490 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:33.492 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:34.299 [NOTICE] Bootstrapped 100% (done): Done 2025-05-30 13:34:47.473 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:47.474 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:48.202 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:48.203 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:54.993 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:34:55.958 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:34:56.039 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:34:56.039 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:34:58.132 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:34:58.132 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:34:59.053 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:59.114 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:59.114 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:59.962 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:35:01.950 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:35:04.597 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:04.597 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:05.158 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:05.159 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:12.248 [WARN] tor_bug_occurred_: Bug: conflux_util.h:31: CIRCUIT_IS_CONFLUX: Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed. (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] Bug: Tor 0.4.8.16 (git-64ccafd8115ecdec): Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed in CIRCUIT_IS_CONFLUX at conflux_util.h:31. (Stack trace not available) (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] tor_bug_occurred_: Bug: conflux_util.h:31: CIRCUIT_IS_CONFLUX: Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed. (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] Bug: Tor 0.4.8.16 (git-64ccafd8115ecdec): Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed in CIRCUIT_IS_CONFLUX at conflux_util.h:31. (Stack trace not available) (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:13.157 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:13.157 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:17.089 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:35:17.089 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:35:23.087 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.090 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.093 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.100 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:35:23.100 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:35:23.848 [NOTICE] Application request when we haven't used client functionality lately. Optimistically trying known bridges again. 2025-05-30 13:35:24.267 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:24.267 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:24.267 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:35:24.269 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:35:24.340 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:24.343 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:24.900 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:24.900 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:24.906 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:35:25.187 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:35:25.251 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:25.252 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:25.449 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:35:25.449 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:35:25.714 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:35:25.752 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:25.752 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:25.924 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:26.250 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:26.251 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:26.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:26.799 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:27.278 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:32.632 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.634 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.636 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.643 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:35:32.644 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:35:33.889 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:33.889 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:33.889 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:35:33.894 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:35:33.964 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:33.967 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:34.488 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:34.493 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:34.497 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:35:34.735 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:35:34.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:34.799 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:34.925 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:35:34.926 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:35:35.117 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:35:35.279 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:35.280 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:35.311 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:36.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:36.798 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:37.295 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:37.297 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:39.795 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:39.795 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:42.308 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:42.309 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:46.133 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:46.354 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:46.355 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:47.012 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:47.012 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:49.427 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:49.429 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure")
05-31
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值