-
Notifications
You must be signed in to change notification settings - Fork 12
/
en.html
459 lines (446 loc) · 33.8 KB
/
en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta name="description" content="BitZeny has a device independent sharing system. It will give you unprecedented impression and unprecedented value." />
<meta name="keywords" content="BitZeny,Cryptocurrency,Mining,Japanese" />
<meta property="og:locale" content="ja_JP">
<meta property="og:type" content="article">
<meta property="og:url" content="https://bitzeny.tech/">
<meta property="og:image" content="https://bitzeny.tech/img/og_img.png">
<meta property="og:site_name" content="BitZeny Project">
<meta property="og:title" content="BitZeny Project">
<meta property="og:description" content="BitZeny has a device independent sharing system. It will give you unprecedented impression and unprecedented value.">
<title>BitZeny Project</title>
<link rel="icon" href="img/bitzeny.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/minireset.css/0.0.2/minireset.min.css" integrity="sha256-5Co4VU8G29ti556RmwtiyF2G2De1jHI3XnJh66vGpRI=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/earlyaccess/sawarabimincho.css" rel="stylesheet" />
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/object.css">
<link rel="stylesheet" href="css/utility.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flexibility/2.0.1/flexibility.js" integrity="sha256-ETXu4iIohKzvSucuk6Bv0DCdqiqaTTGeMsjZ72szPzM=" crossorigin="anonymous"></script>
<script src="js/jquery.csv2table-0.02-b-4.8.js"></script>
<script>
$(function() {
flexibility(document.documentElement);
$('a[href^="#menu"]').click(function() {
return false;
});
$('a[href^="#"]').click(function() {
var speed = 500;
var href = $(this).attr("href");
var target = $(href == "#" || href == "" ? 'html' : href);
var position = target.offset().top;
$("html, body").animate({
scrollTop: position
}, speed, "swing");
return false;
});
$('.js-parent').click(function() {
if ($('.js-parent').attr("class") == 'js-parent close') {
$('.js-ddmenu_child').fadeIn();
$(this).removeClass("close").addClass("open");
} else {
$('.js-ddmenu_child').fadeOut(function() {
$('.js-parent').removeClass("open").addClass("close");
});
}
});
$('main').click(function() {
$('.js-ddmenu_child').fadeOut(function() {
$('.js-parent').removeClass("open").addClass("close");
});
});
$('#js-nav-toggle').click(function() {
if ($('#js-nav-toggle').attr("class") == 'u-nav-toggle-btn close') {
$('.u-nav-list').fadeIn();
$(this).removeClass("close").addClass("open");
} else {
$('.u-nav-list').fadeOut(function() {
$('#js-nav-toggle').removeClass("open").addClass("close");
});
}
});
$('.u-nav-list a,main').click(function() {
$('.u-nav-list').fadeOut(function() {
$('#js-nav-toggle').removeClass("open").addClass("close");
});
});
$('#js-table_disp').csv2table('hashrate.csv');
});
$(window).scroll(function(e) {
var scrolled = $(window).scrollTop();
$('#js-parallax1').css('top', (scrolled / 6) + 'px');
$('#js-parallax2').css('top', (scrolled / 6) - 40 + 'px');
$('#js-parallax3').css('top', (scrolled * 0.2) - 740 + 'px');
});
</script>
</head>
<body class="l-flex_justify_center">
<header class="l-fixed o-w100per u-font_sans">
<!--PCメニュー-->
<div class="l-flex_justify_sb l-flex_v_align_top o-w1k o-h48 u-m0a u-pc_menu u-bg_black_trans">
<div class="l-flex_justify_sb l-flex_v_align_center u-plr8 u-menu">
<a class=" l-flex_v_align_center" href="#1"><img class="u-logo" src="img/bitzeny.png">BitZeny Project</a>
<a class="u-block l-text_center" href="#2">Downloads</a>
<a class="u-block l-text_center" href="#3">Tech Info</a>
<a class="u-block l-text_center" href="#4">Links</a>
</div>
<ul class="u-ddmenu">
<li class="l-text_right">
<a class="js-parent close" style="cursor:default;">
<div class="u-plr8">
<p><img class="o-h8 u-plr8" src="img/tri.svg">Language</p>
</div>
</a>
<ul class="js-ddmenu_child l-text_right">
<li class="u-bg_black_trans">
<a href="/">
<div class="l-flex_justify_sb l-flex_v_align_center o-w100 u-plr8"><img class="o-h8 u-plr8" src="img/language/jp.png">
<p>Japanese</p>
</div>
</a>
</li>
<li class="u-bg_black_trans">
<a href="en.html">
<div class="l-flex_justify_sb l-flex_v_align_center o-w100 u-plr8"><img class="o-h8 u-plr8" src="img/language/us.png">
<p>English</p>
</div>
</a>
</li>
</ul>
</li>
</ul>
</div>
<!--SPメニュー-->
<nav class="u-sp_menu">
<div class="l-flex_direction_reverse u-p16"><button id="js-nav-toggle" class="u-nav-toggle-btn close"></button></div>
<ul class="l-text_center u-nav-list u-bg_black_trans u-mt-48 u-pt48">
<li class="u-p16 u-border_bottom"><img class="o-h8" src="img/tri.svg"> Menu</li>
<li><a class="u-block" href="#1">Top</a></li>
<li><a class="u-block" href="#2">Downloads</a></li>
<li><a class="u-block" href="#3">Tech Info</a></li>
<li><a class="u-block" href="#4">Links</a></li>
<li class="u-p16 u-border_bottom u-border_top"><img class="o-h8" src="img/tri.svg"> Select Language</li>
<li><a class="u-block" href="/"><img class="o-h8" src="img/language/jp.png"> Japanese</a></li>
<li><a class="u-block" href="en.html"><img class="o-h8" src="img/language/us.png"> English</a></li>
</ul>
</nav>
</header>
<main id="1" class="o-w1k u-over_hidden">
<!--key visual-->
<section id="js-parallax1" class="l-flex_justify_center o-w100per o-h680 u-tilt u-tiltbg_samurai u-z-10">
<img class="o-h210 u-mt160" src="img/bitzeny_logo.svg" alt="BitZeny">
</section>
<!--key message-->
<section class="u-mt-150 u-tilt u-tilt-14 u-tiltbg_white u-font_gray">
<div class="l-flex_v_align_center l-flex_justify_center o-w100per u-pt120">
<h1 class="u-mt85 l-text_center u-font_large"><span>The cryptocurrency from Japan</span></h1>
</div>
</section>
<!--刀-->
<section id="js-parallax2" class="o-h1k u-mt-150 u-bg_position_center u-bg_cover u-tiltbg_katana u-tilt u-z-10">
</section>
<!--説明-->
<section class="u-tilt u-mt-150 u-tilt-14 u-tiltbg_gray">
<div class="u-pt200 u-pb200">
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16"><span>The cryptocurrency from Japan</span></h2>
</div>
<div class="l-flex_justify_center l-flex_wrap o-w100per u-pb160">
<div class="l-text_center u-plr8">
<p>
<span>BitZeny started on November, 2014.</span><br>
<span>BitZeny was made as clone of Bitcoin by a Japanese developer,</span><br>
<span>aiming at becoming easy for anyone to develop and mine.</span>
<span>Its currency unit is ZNY, and its issuance is limited to 250 million.</span>
</p>
</div>
</div>
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16"><span>Optimized for mining by CPU</span></h2>
</div>
<div class="l-flex_justify_center l-flex_wrap o-w100per u-pb160">
<div class="l-text_center u-plr8">
<p>
The greatest feature of BitZeny is that CPU mining can be done with a ordinary PC.<br>
Since many cryptocurrencies are mined using GPUs and ASICs,<br>
it is an oligopoly state by some miner who is able to invest in dedicated equipment.<br>
BitZeny is using an algorithm called 'Yescrypt' that is hard to by with GPU and ASIC,<br>
but suitable for mining by CPU.
</p>
</div>
</div>
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16"><span>Energetic community</span></h2>
</div>
<div class="l-flex_justify_center l-flex_wrap o-w100per u-pb160">
<div class="l-text_center u-plr8">
<p>
Because of its easiness to mine and get for anyone, thanks to CPU mining,<br>
its community flourish.<br>
Besides, there are some restaurants accepting BitZeny,<br>
and, web services like 'Rin-Hime'(twitter id: @zenytips)<br>
and BitZeny itself are interruptedly developed.<br>
World, which is able to have fun with BitZeny<br>
is spreading to not only miners but everyone.<br>
Of course, you are invited.
</p>
</div>
</div>
</div>
</section>
<!--ダウンロード-->
<section id="2" class="u-mt-150 u-tilt u-tilt-14 u-tiltbg_white u-font_gray">
<div class="u-pt200 u-pb160">
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16">Downloads</h2>
</div>
<div class="o-w100per l-flex_justify_center l-flex_wrap">
<ul class="l-text_center o-w600 u-p16 u-m0a u-font_sans">
<li><a class="o-w100per u-p16 u-mb16 u-color1 u-font_white u-iconize-round" href="https://github.com/BitzenyCoreDevelopers/bitzeny/releases/download/z2.0.2/bitzeny-2.0.2-win32-setup-unsigned.exe"><i class="fa fa fa-windows" aria-hidden="true"></i> BitZeny 2.0.2 Win32bit Edition</a></li>
<li><a class="o-w100per u-p16 u-mb16 u-color1 u-font_white u-iconize-round" href="https://github.com/BitzenyCoreDevelopers/bitzeny/releases/download/z2.0.2/bitzeny-2.0.2-win64-setup-unsigned.exe"><i class="fa fa fa-windows" aria-hidden="true"></i> BitZeny 2.0.2 Win64bit Edition</a></li>
<li><a class="o-w100per u-p16 u-mb16 u-color3 u-font_white u-iconize-round" href="https://github.com/BitzenyCoreDevelopers/bitzeny/releases/download/z2.0.2/bitzeny-2.0.2.tar.gz"><i class="fa fa fa-linux" aria-hidden="true"></i> BitZeny 2.0.2 Linux Edition</a></li>
<li><a class="o-w100per u-p16 u-mb16 u-color2 u-font_white u-iconize-round" href="https://github.com/BitzenyCoreDevelopers/bitzeny/releases/download/z2.0.2/bitzeny-2.0.2-osx-unsigned.dmg"><i class="fa fa-apple" aria-hidden="true"></i> BitZeny 2.0.2 Mac Edition</a></li>
<li><a class="o-w100per u-p16 u-mb16 u-color4 u-font_white u-iconize-round" href="https://github.com/BitzenyCoreDevelopers/bitzeny/releases" target="_blank"><i class="fa fa-github" aria-hidden="true"></i> Other Release</a></li>
<li><a class="o-w100per u-p16 u-mb16 u-color4 u-font_white u-iconize-round" href="https://github.com/BitzenyCoreDevelopers/bitzeny"><i class="fa fa-file-archive-o" aria-hidden="true"></i> Source Code</a></li>
</ul>
</div>
</div>
</section>
<!--実現する社会-->
<section id="js-parallax3" class="u-mt-150 u-bg_cover u-bg_position_center u-tilt u-tiltbg_society u-z-10">
<div class="u-pt400 u-pb400">
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16">Our goal</h2>
</div>
<div class="l-flex_justify_center l-flex_wrap o-w100per">
<div class="l-text_center u-plr8">
<p>Our goal is that BitZeny-zone economy grows to reach maturity and BitZeny is used in everyday life,<br>
to create energetic society.</p>
</div>
</div>
</div>
</section>
<!--技術仕様-->
<section id="3" class="u-tilt u-mt-150 u-tilt-14 u-tiltbg_navy">
<div class="u-pt200 u-pb200">
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16">Technical Information</h2>
</div>
<div class="o-w100per l-flex_justify_center l-flex_wrap">
<div class="l-flex_justify_center l-flex_wrap o-w600 u-p16 u-font_sans">
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Symbol</div>
<div class="o-w50per u-border_bottom u-tech_info">ZNY</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Algorithm</div>
<div class="o-w50per u-border_bottom u-tech_info">Original Yescrypt-0.5</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Finite supply</div>
<div class="o-w50per u-border_bottom u-tech_info">250,000,000ZNY</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Pre-mine</div>
<div class="o-w50per u-border_bottom u-tech_info">0</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Time between blocks</div>
<div class="o-w50per u-border_bottom u-tech_info">90 seconds</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Difficulty</div>
<div class="o-w50per u-border_bottom u-tech_info">DarkGravityWave3</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Block reward</div>
<div class="o-w50per u-border_bottom u-tech_info">250ZNY<br>(Apr.2019:31.25ZNY)</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Halving</div>
<div class="o-w50per u-border_bottom u-tech_info">500,000ZNY</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">Port</div>
<div class="o-w50per u-border_bottom u-tech_info">9253</div>
<div class="o-w50per u-border_bottom u-font_bold u-tech_info">RPC Port</div>
<div class="o-w50per u-border_bottom u-tech_info">9252</div>
</div>
</div>
</div>
</section>
<!--リンク-->
<section id="4" class="u-mt-150 u-tilt u-tilt-14 u-tiltbg_white u-font_gray">
<div class="u-pt120 u-pb160">
<div class="o-w100per u-mb16">
<h2 class="l-text_center u-m16">Links</h2>
</div>
<div class="l-flex_justify_center l-flex_wrap o-w100per u-pb100">
<div class="l-flex_justify_center l-flex_wrap o-w1k u-p16 u-font_sans">
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny Forums</h3>
<a href="https://twitter.com/MCPE_Yossi1114" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">Community forum for discuss a lot of things about BitZeny Mainly discussed Web service, exchanges, wallet and specification of coin.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://bitzeny.info/" target="_blank">BitZeny Forums</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny Wiki</h3> <a href="#" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">It's comprehensively transmitting about News relating BitZeny, How to start, information for Project, community, engineer.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://bitzeny.wiki.fc2.com/" target="_blank">BitZeny Wiki</a></div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>NOVA exchange</h3> <a href="https://twitter.com/nova_exchange" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">Swedish exchange. </p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://novaexchange.com/" target="_blank">BitZeny Portal</a></div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>Telegram BitZeny</h3> <a href="#" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">It's BitZeny channel of chatting tool "Telegram". Mainly used for mainly chatting.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://t.me/joinchat/G624oAt_JI5W6oXbBwm3QQ" target="_blank">Telegram BitZeny</a></div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny Discord Server</h3><a href="https://twitter.com/uesitananame55" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">This Discord server is subjected community for BitZeny. Of cource everybody can join and energetic communicated every day.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white bottom12" href="https://discord.gg/xmWd3yy" target="_blank">BitZeny Discord Server</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>CryptoBridge</h3> <a href="https://twitter.com/cryptobridge" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">This is Distributed Exchange(DEX) to buy BitZeny by BTC or MONA. All you needs are only username and password.</p>
</div>
<div class="u-p16 u-pt0"><a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://crypto-bridge.org/" target="_blank">CryptoBridge</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>TradeSatoshi</h3> <a href="https://twitter.com/TradeSatoshi" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">You can buy BitZeny by BTC and LTC,DOGE,USDT.</p>
</div>
<div class="u-p16 u-pt0"><a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://tradesatoshi.com/" target="_blank">TradeSatoshi</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny Block Explorer</h3> <a href="https://twitter.com/namuyan_mine" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">By put BitZeny's wallet address or transaction ID, you can check deposit of wallet and history of transfer. And you can also check detail of founded block.</p>
</div>
<div class="u-p16 u-pt0"><a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="http://namuyan.dip.jp/MultiLightBlockExplorer/index.php?page=selectcoin&coin=zeny" target="_blank">namuyan.dip.jp MultiLightBlockExplorer</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny insight</h3> <a href="#" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">By put BitZeny's wallet address or transaction ID, you can check deposit of wallet and history of transfer. And you can also check detail of founded block.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://zenyinsight.tomotomo9696.xyz/" target="_blank">zenyinsight.tomotomo9696.xyz</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny insight</h3> <a href="#" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">By put BitZeny's wallet address or transaction ID, you can check deposit of wallet and history of transfer. And you can also check detail of founded block.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://insight.bitzeny.jp/" target="_blank">insight.bitzeny.jp</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny insight</h3> <a href="#" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">By put BitZeny's wallet address or transaction ID, you can check deposit of wallet and history of transfer. And you can also check detail of founded block.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://zeny.insight.monaco-ex.org/" target="_blank">zeny.insight.monaco-ex.org</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BlockBook</h3> <a href="https://twitter.com/uesitananame55" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">Blockbook is BlockChain Explorer developed by SatoshiLabs.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://zny.blockbook.ovh/" target="_blank">zny.blockbook.ovh</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BlockBook</h3> <a href="https://twitter.com/sanyodensan" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">Blockbook is BlockChain Explorer developed by SatoshiLabs.</p>
</div>
<div class="u-p16 u-pt0">
<a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://zeny.blockbook.zenypota.net/" target="_blank">zeny.blockbook.zenypota.net</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny Online Wallet</h3> <a href="https://twitter.com/zenywallet" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">By put BitZeny's wallet address or transaction ID, you can check deposit of wallet and history of transfer. And you can also check detail of founded block.</p>
</div>
<div class="u-p16 u-pt0"><a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="https://bitzeny.jp/" target="_blank">BitZeny Online Wallet</a>
</div>
</div>
</div>
<div class="o-w33per o-link_h u-mb30">
<div class="l-flex_direction_center l-flex_justify_sb l-text_center o-h100per u-m16 u-bg_gray u-font_gray">
<div class="u-p16 u-pb0">
<h3>BitZeny Shrine</h3> <a href="https://twitter.com/Bitzeny_Shrine" class="u-m8 u-color1 u-iconize-round u-font_white u-font_bold u-font_small" target="_blank"><i class="fa fa-twitter twitter u-plr4" aria-hidden="true"></i>Manager</a>
<p class="u-font_small u-pt14">Constructs a Shinto shrine for the domestic encrypted asset BitZeny in Hasuda City, Saitama Prefecture, builds Our goodies, works on forest issues, uses domestic timber that has been legally harvested to create special BitZeny wooden coins I will.</p>
</div>
<div class="u-p16 u-pt0"><a class="o-w100per u-color2 u-iconize-square u-font_small u-font_bold u-font_white" href="http://www.bitzenyjinjya.com/" target="_blank">BitZeny Shrine</a>
</div>
</div>
</div>
<div class="o-w33per"></div>
<div class="o-w33per"></div>
</div>
</div>
</div>
</section>
<!--フッター-->
<footer class="u-tilt u-tilt-14 u-mt-150 u-font_sans u-tiltbg_gray">
<div class="l-text_center o-w300 u-pt200 u-pb100 u-m0a">
<div class="l-flex_justify_sb u-font_bold">
<a class="u-m8 u-font_small u-font_white" href="https://github.com/BitzenyCoreDevelopers" target="_blank">GitHub</a>
<a class="u-m8 u-font_small u-font_white" href="https://bitcointalk.org/index.php?topic=849994.0" target="_blank">Bitcoin Forum</a>
<a class="u-m8 u-font_small u-font_white" href="https://bitzeny.wiki.fc2.com/" target="_blank">Wiki</a>
</div>
</div>
<p class="l-text_center o-w100per u-pb160 u-font_small">Copyright © 2018 BitZeny Project. All Rights Reserved.</p>
</footer>
</main>
</body>
</html>