Physics (ms)
Graphics (ms)
14,828
18,247
2
WHITE PAPER . TELEGRAM

FIRST SAVINGS SYSTEM
IN CRYPTOCURRENCY

AUTOMATIC MACHINE LEARNING, ARTIFICIAL INTELLIGENCE

INVEST NOW ! +10% Bonus

Total users

11320

Total investors

3413

Successful orders

4173

Total in progress

$0

Total new

$10,408,095

Total validated

$2,389,282

  • 139

  • 514

  • 109

  • 19

  • 470

  • ---

THE ICO (TGE) ENDS IN

Days05
Hours13
Minutes32
Seconds40

PECULIUM

PECULIUM is the first savings management platform to take advantage of the blockchain technology. PECULIUM revolutionizes savings management by deploying immutable Smart-Contracts over Ethereum blockchain. These smart contracts provide a trust-less way of achieving transparent, decentralized, and infallible contractual agreements.

PECULIUM is a visionary innovation in the realm of traditional savings, which with the help of AIΞVE and Blockchain Technology, provides groundbreaking solutions in savings management for individuals, brokers, and companies that are based on the underlying value of crypto-assets.

PECULIUM AUTOMATIC MACHINE LEARNING (AML)

No one can detect or see everything or interpret all data,
AIΞVE is the AI for savers and partners

AIEVE
Cognitive

I can see the past, the present and the future

I can analyze, 30 million
locations
at the same time

Forecasting Prediction

SECURITY

AML
AI

BIGDATA
ANALYTICS

I can answer 100,000 questions from 100,000 different customers at the same time.

OUR SERVICES

ROADMAP PECULIUM

TOKENS ALLOCATION

Publications

Partner

DOCUMENTS

White Paper

www.peculium.io

Business Model

www.peculium.io

Investment Opportunity

www.peculium.io

SMART CONTRACT

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
/*
 This Token Contract implements the Peculium token (beta)
 .*/
 
 
 import "./BurnableToken.sol";
 import "./Ownable.sol";
 
 import "./SafeERC20.sol";
 
 pragma solidity ^0.4.15;
 
 
 contract Peculium is BurnableToken,Ownable { // Our token is a standard ERC20 Token with burnable and ownable aptitude
 
     using SafeMath for uint256; // We use safemath to do basic math operation (+,-,*,/)
     using SafeERC20 for ERC20Basic;
 
         /* Public variables of the token for ERC20 compliance */
     string public name = "Peculium"; //token name
         string public symbol = "PCL"; // token symbol
         uint256 public decimals = 8; // token number of decimal
 
         /* Public variables specific for Peculium */
         uint256 public constant MAX_SUPPLY_NBTOKEN   = 20000000000*10**8; // The max cap is 20 Billion Peculium
 
     uint256 public dateStartContract; // The date of the deployment of the token
     mapping(address => bool) public balancesCanSell; // The boolean variable, to frost the tokens
     uint256 public dateDefrost; // The date when the owners of token can defrost their tokens
 
         /* Event for the freeze of account */
     event FrozenFunds(address target, bool frozen);
         event Defroze(address msgAdd, bool freeze);
 
 
 
 
     //Constructor
     function Peculium() {
         totalSupply = MAX_SUPPLY_NBTOKEN;
         balances[owner] = totalSupply; // At the beginning, the owner has all the tokens.
         balancesCanSell[owner] = true; // The owner need to sell token for the private sale and for the preICO, ICO.
 
         dateStartContract=now;
         dateDefrost = dateStartContract + 85 days; // everybody can defrost his own token after the 25 january 2018
 
     }
 
     /*** Public Functions of the contract ***/
 
     function defrostToken() public
     { // Function to defrost your own token, after the date of the defrost
 
         require(now>dateDefrost);
         balancesCanSell[msg.sender]=true;
         Defroze(msg.sender,true);
     }
 
     function transfer(address _to, uint256 _value) public returns (bool)
     { // We overright the transfer function to allow freeze possibility
 
         require(balancesCanSell[msg.sender]);
         return BasicToken.transfer(_to,_value);
 
     }
 
     function transferFrom(address _from, address _to, uint256 _value) public returns (bool)
     { // We overright the transferFrom function to allow freeze possibility (need to allow before)
 
         require(balancesCanSell[msg.sender]);
         return StandardToken.transferFrom(_from,_to,_value);
 
     }
 
     /***  Owner Functions of the contract ***/
 
     function freezeAccount(address target, bool canSell) onlyOwner
     {
 
             balancesCanSell[target] = canSell;
             FrozenFunds(target, canSell);
 
         }
 
 
     /*** Others Functions of the contract ***/
 
     /* Approves and then calls the receiving contract */
     function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
         allowed[msg.sender][_spender] = _value;
         Approval(msg.sender, _spender, _value);
 
         require(_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData));
             return true;
     }
 
     function getBlockTimestamp() constant returns (uint256)
     {
 
             return now;
 
     }
 
     function getOwnerInfos() constant returns (address ownerAddr, uint256 ownerBalance)
     { // Return info about the public address and balance of the account of the owner of the contract
 
             ownerAddr = owner;
         ownerBalance = balanceOf(ownerAddr);
 
     }
 
 }

Frequently asked questions

Peculium is a transparent, savings platform based on automatic machine learning, this way avoid the risks encountered nowadays in investment world.
The investor now has an inalienable right to transparency, to the real-time management of his portfolio, while guaranteeing himself a tremendous future: to gain freedom and to prepare his future, capital and better life.
Peculium, a pioneer in BlockChain-related savings, will become the ultimate tool that will bring new answers to the constraints of today\'s global savings.
You can contribute on Peculium website https://peculium.io and buy PCL tokens. During sales period you will be able to purchase Peculium Tokens (PCL) using multiple payment methods: USD / BTC / ETH / DASH / EUR.
Account registration will be available once the ICO officially start.
Peculium will be listed as an exchange currency on CryptoCurrency Market after the end of crowdsale. Follow our further announcements to learn more about it.
The price of the token will be 0.01€ during all the sales period.
Cut-off time is the exact date and time when Peculium will cease to accept any further contributions. Cut-off time will be used as a reference point to count final balances across different wallets and determine cryptocurrencies rates in USD value. Cut-off time is the end of the ICO: January 24, 2018 (UTC 00:00)
25% of total supply PCL tokens will be available during the pre-ICO with a price of 0.01€ per token.
Our Pre-ICO has a bonus percentage of 35% for the entire period. The bonus percentage during the pre-ICO is higher that the ICO.
Anyone who is interested to benefit from savings and Peculium revenues.
Any transaction fees shall be in addition and be paid by the Customer

ICO PECULIUM

ico@peculium.io

TEAM PECULIUM

team@peculium.io

SUPPORT 24h/7

support@peculium.io