It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
x=83402281777707715381485212681368749158073214888176003645002923212220704930560
log_2(x) = 255.5266
x=83402281777707715381485212681368749158073214888176003645002923212220704930560
log_2(x) = 255.5266
# http://en.wikipedia.org/wiki/Curve25519 parameters
P = 2 ** 255 - 19
A = 486662
N = 7237005577332262213973186563042994240857116359379907606001950938285454250989
def expmod(b, e, m):
if e == 0: return 1
t = expmod(b, e / 2, m) ** 2 % m
if e & 1: t = (t * b) % m
return t
def inv(x):
return expmod(x, P - 2, P)
# doubles a point on a montgomery curve (x-coordinate only representation)
# https://www.hyperelliptic.org/EFD/g1p/auto-montgom-xz.html#doubling-dbl-1987-m-3
def double(x1):
xx1 = x1 * x1 % P
x3 = (xx1 - 1) * (xx1 - 1) % P
z3 = 4 * x1 * (xx1 * A * x1 + 1) % P
return x3 * inv(z3) % P
def find(target, initial_point=9):
assert 0 < target < P
assert 0 < initial_point < P
x = initial_point
i = 0
while i < N:
if x == target:
return i
x = double(x)
i += 1
# http://en.wikipedia.org/wiki/Curve25519 parameters
P = 2 ** 255 - 19
A = 486662
N = 7237005577332262213973186563042994240857116359379907606001950938285454250989
def expmod(b, e, m):
if e == 0: return 1
t = expmod(b, e / 2, m) ** 2 % m
if e & 1: t = (t * b) % m
return t
def inv(x):
return expmod(x, P - 2, P)
# doubles a point on a montgomery curve (x-coordinate only representation)
# https://www.hyperelliptic.org/EFD/g1p/auto-montgom-xz.html#doubling-dbl-1987-m-3
def double(x1):
xx1 = x1 * x1 % P
x3 = (xx1 - 1) * (xx1 - 1) % P
z3 = 4 * x1 * (xx1 * A * x1 + 1) % P
return x3 * inv(z3) % P
def find(target, initial_point=9):
assert 0 < target < P
assert 0 < initial_point < P
x = initial_point
i = 0
while i < N:
if x == target:
return i
x = double(x)
i += 1
new_x = (x²-1)² / (4*x*(x²+a*x+1))