@extends('layout.default') @section('breadcrumbs') @endsection @section('nav-tabs') @include('user.buttons.user') @endsection @section('page', 'page__bonus--index') @section('main')

{{ __('bon.earnings') }}

{{ __('common.name') }} {{ __('common.description') }} Per {{ __('torrent.torrent') }} Hourly Daily Weekly Monthly
{{ __('torrent.dying-torrent') }} {{ __('torrent.last-seeder') }} 2.00 × {{ $dying }} {{ $dying * 2 }} {{ $dying * 2 * 24 }} {{ $dying * 2 * 24 * 7 }} {{ $dying * 2 * 24 * 30 }}
{{ __('torrent.legendary-torrent') }} {{ __('common.older-than') }} 12 {{ strtolower(__('common.months')) }} 1.50 × {{ $legendary }} {{ $legendary * 1.5 }} {{ $legendary * 1.5 * 24 }} {{ $legendary * 1.5 * 24 * 7 }} {{ $legendary * 1.5 * 24 * 30 }}
{{ __('torrent.old-torrent') }} {{ __('common.older-than') }} 6 {{ strtolower(__('common.months')) }} 1.00 × {{ $old }} {{ $old * 1 }} {{ $old * 1 * 24 }} {{ $old * 1 * 24 * 7 }} {{ $old * 1 * 24 * 30 }}
{{ __('common.huge') }} {{ __('torrent.torrents') }} {{ __('torrent.torrent') }} {{ __('torrent.size') }} > 100 GiB 0.75 × {{ $huge }} {{ $huge * 0.75 }} {{ $huge * 0.75 * 24 }} {{ $huge * 0.75 * 24 * 7 }} {{ $huge * 0.75 * 24 * 30 }}
{{ __('common.large') }} {{ __('torrent.torrents') }} {{ __('torrent.torrent') }} {{ __('torrent.size') }} ≥ 25 GiB {{ strtolower(__('common.but')) }} < 100GiB 0.50 × {{ $large }} {{ $large * 0.5 }} {{ $large * 0.5 * 24 }} {{ $large * 0.5 * 24 * 7 }} {{ $large * 0.5 * 24 * 30 }}
{{ __('common.everyday') }} {{ __('torrent.torrents') }} {{ __('torrent.torrent') }} {{ __('torrent.size') }} ≥ 1 GiB {{ strtolower(__('common.but')) }} < 25GiB 0.25 × {{ $regular }} {{ $regular * 0.25 }} {{ $regular * 0.25 * 24 }} {{ $regular * 0.25 * 24 * 7 }} {{ $regular * 0.25 * 24 * 30 }}
{{ __('torrent.legendary-seeder') }} {{ __('torrent.seed-time') }} ≥ 1 {{ strtolower(__('common.year')) }} 2.00 × {{ $legend }} {{ $legend * 2 }} {{ $legend * 2 * 24 }} {{ $legend * 2 * 24 * 7 }} {{ $legend * 2 * 24 * 30 }}
{{ __('torrent.mvp') }} {{ __('torrent.seeder') }} {{ __('torrent.seed-time') }} ≥ 6 {{ strtolower(__('common.months')) }} {{ strtolower(__('common.but')) }} < 1 {{ strtolower(__('common.year')) }} 1.00 × {{ $mvp }} {{ $mvp * 1 }} {{ $mvp * 1 * 24 }} {{ $mvp * 1 * 24 * 7 }} {{ $mvp * 1 * 24 * 30 }}
{{ __('torrent.commited') }} {{ __('torrent.seeder') }} {{ __('torrent.seed-time') }} ≥ 3 {{ strtolower(__('common.months')) }} {{ strtolower(__('common.but')) }} < 6 {{ strtolower(__('common.months')) }} 0.75 × {{ $committed }} {{ $committed * 0.75 }} {{ $committed * 0.75 * 24 }} {{ $committed * 0.75 * 24 * 7 }} {{ $committed * 0.75 * 24 * 30 }}
{{ __('torrent.team-player') }} {{ __('torrent.seeder') }} {{ __('torrent.seed-time') }} ≥ 2 {{ strtolower(__('common.months')) }} {{ strtolower(__('common.but')) }} < 3 {{ strtolower(__('common.months')) }} 0.50 × {{ $teamplayer }} {{ $teamplayer * 0.5 }} {{ $teamplayer * 0.5 * 24 }} {{ $teamplayer * 0.5 * 24 * 7 }} {{ $teamplayer * 0.5 * 24 * 30 }}
{{ __('torrent.participant') }} {{ __('torrent.seeder') }} {{ __('torrent.seed-time') }} ≥ 1 {{ strtolower(__('common.month')) }} {{ strtolower(__('common.but')) }} < 2 {{ strtolower(__('common.months')) }} 0.25 × {{ $participant }} {{ $participant * 0.25 }} {{ $participant * 0.25 * 24 }} {{ $participant * 0.25 * 24 * 7 }} {{ $participant * 0.25 * 24 * 30 }}
{{ __('bon.total') }} {{ $total }} {{ $total * 24 }} {{ $total * 24 * 7 }} {{ $total * 24 * 30 }}
@endsection @section('sidebar')

{{ __('bon.your-points') }}

{{ $bon }}

{{ __('bon.your-points') }}

{{ __('bon.per-second') }}
{{ number_format($total / 60 / 60, 2) }}
{{ __('bon.per-minute') }}
{{ number_format($total / 60, 2) }}
{{ __('bon.per-hour') }}
{{ number_format($total, 2) }}
{{ __('bon.per-day') }}
{{ number_format($total * 24, 2) }}
{{ __('bon.per-week') }}
{{ number_format($total * 24 * 7, 2) }}
{{ __('bon.per-month') }}
{{ number_format($total * 24 * 30, 2) }}
{{ __('bon.per-year') }}
{{ number_format($total * 24 * 365, 2) }}

{{ __('bon.review-seeds') }}

@endsection