Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 782 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20452686 | 152 days ago | IN | 0 ETH | 0.00003204 | ||||
Transfer | 13583722 | 1151 days ago | IN | 0 ETH | 0.0088151 | ||||
Transfer | 12615779 | 1302 days ago | IN | 0 ETH | 0.00060093 | ||||
Transfer | 12615584 | 1302 days ago | IN | 0 ETH | 0.00067778 | ||||
Transfer | 12615463 | 1302 days ago | IN | 0 ETH | 0.00048153 | ||||
Transfer | 12615348 | 1302 days ago | IN | 0 ETH | 0.00037168 | ||||
Transfer | 12615328 | 1302 days ago | IN | 0 ETH | 0.00043728 | ||||
Transfer | 12615224 | 1302 days ago | IN | 0 ETH | 0.00045939 | ||||
Transfer | 12374168 | 1339 days ago | IN | 0 ETH | 0.00183436 | ||||
Transfer | 12309674 | 1349 days ago | IN | 0 ETH | 0.00165888 | ||||
Transfer | 12309647 | 1349 days ago | IN | 0 ETH | 0.00089593 | ||||
Transfer | 12309647 | 1349 days ago | IN | 0 ETH | 0.00089593 | ||||
Transfer | 12309647 | 1349 days ago | IN | 0 ETH | 0.00089593 | ||||
Transfer | 12309646 | 1349 days ago | IN | 0 ETH | 0.00089593 | ||||
Transfer | 12309646 | 1349 days ago | IN | 0 ETH | 0.00089593 | ||||
Transfer | 12302485 | 1350 days ago | IN | 0 ETH | 0.00206438 | ||||
Transfer | 12302431 | 1350 days ago | IN | 0 ETH | 0.00126741 | ||||
Transfer | 12302427 | 1350 days ago | IN | 0 ETH | 0.00120186 | ||||
Transfer | 12301738 | 1350 days ago | IN | 0 ETH | 0.00153048 | ||||
Transfer | 12099215 | 1381 days ago | IN | 0 ETH | 0.0022152 | ||||
Transfer | 12088426 | 1383 days ago | IN | 0 ETH | 0.0037164 | ||||
Transfer | 12077816 | 1385 days ago | IN | 0 ETH | 0.00438535 | ||||
Transfer | 11769426 | 1432 days ago | IN | 0 ETH | 0.0104328 | ||||
Transfer | 11769421 | 1432 days ago | IN | 0 ETH | 0.00636254 | ||||
Transfer | 11572064 | 1462 days ago | IN | 0 ETH | 0.00223056 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.5.12+commit.7709ece9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-01-14 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * > Note that this information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * `IERC20.balanceOf` and `IERC20.transfer`. */ function decimals() public view returns (uint8) { return _decimals; } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @dev Extension of `ERC20` that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public { _burn(msg.sender, amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: @openzeppelin/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin/contracts/access/roles/PauserRole.sol pragma solidity ^0.5.0; contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } // File: @openzeppelin/contracts/lifecycle/Pausable.sol pragma solidity ^0.5.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol pragma solidity ^0.5.0; /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } // File: contracts/Token.sol pragma solidity >=0.4.21 <0.6.0; contract Token is ERC20, ERC20Burnable, ERC20Detailed, ERC20Pausable { address private _owner; constructor(address _contractOwner, address _reserveHolder) ERC20Detailed('Becaz', 'BCZ', 18) public{ uint256 _circulatingSupply = 451*(10**24); uint256 _reservedSupply = 370*(10**24); _owner = _contractOwner; addPauser(_owner); _mint(_owner, _circulatingSupply); _mint(_reserveHolder, _reservedSupply); } function setOwner(address ownerAddr) public { require(_owner == msg.sender, "NOT_OWNER"); require(ownerAddr != address(0), "ZERO_ADDR"); addPauser(ownerAddr); _removePauser(_owner); _owner = ownerAddr; } function owner() public view returns(address) { return _owner; } function burn(uint256 amount) public whenNotPaused { super.burn(amount); } function burnFrom(address account, uint256 amount) public whenNotPaused { super.burnFrom(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_contractOwner","type":"address"},{"internalType":"address","name":"_reserveHolder","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"ownerAddr","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002a1038038062002a10833981810160405260408110156200003757600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600581526020017f426563617a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42435a000000000000000000000000000000000000000000000000000000000081525060128260039080519060200190620000d89291906200073a565b508160049080519060200190620000f19291906200073a565b5080600560006101000a81548160ff021916908360ff16021790555050505062000121336200022260201b60201c565b6000600760006101000a81548160ff02191690831515021790555060006b01750ef6fd5306a2a3000000905060006b01320e8c30e42f72b2000000905083600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001d2600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200028360201b60201c565b62000206600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683620002ff60201b60201c565b620002188382620002ff60201b60201c565b50505050620007e9565b6200023d816006620004c960201b62001f931790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6200029433620005ad60201b60201c565b620002eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180620029be6030913960400191505060405180910390fd5b620002fc816200022260201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620003bf81600254620005d160201b62001cc61790919060201c565b6002819055506200041d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005d160201b62001cc61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004db82826200065a60201b60201c565b156200054f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000620005ca8260066200065a60201b620014eb1790919060201c565b9050919050565b60008082840190508381101562000650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620029ee6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200077d57805160ff1916838001178555620007ae565b82800160010185558215620007ae579182015b82811115620007ad57825182559160200191906001019062000790565b5b509050620007bd9190620007c1565b5090565b620007e691905b80821115620007e2576000816000905550600101620007c8565b5090565b90565b6121c580620007f96000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635c975abb116100b85780638456cb591161007c5780638456cb59146105415780638da5cb5b1461054b57806395d89b4114610595578063a457c2d714610618578063a9059cbb1461067e578063dd62ed3e146106e457610137565b80635c975abb1461042b5780636ef8d66d1461044d57806370a082311461045757806379cc6790146104af57806382dc1ec4146104fd57610137565b8063313ce567116100ff578063313ce5671461030d57806339509351146103315780633f4ba83a1461039757806342966c68146103a157806346fbf68e146103cf57610137565b806306fdde031461013c578063095ea7b3146101bf57806313af40351461022557806318160ddd1461026957806323b872dd14610287575b600080fd5b61014461075c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107fe565b604051808215151515815260200191505060405180910390f35b6102676004803603602081101561023b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610895565b005b610271610a73565b6040518082815260200191505060405180910390f35b6102f36004803603606081101561029d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a7d565b604051808215151515815260200191505060405180910390f35b610315610b16565b604051808260ff1660ff16815260200191505060405180910390f35b61037d6004803603604081101561034757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b2d565b604051808215151515815260200191505060405180910390f35b61039f610bc4565b005b6103cd600480360360208110156103b757600080fd5b8101908080359060200190929190505050610d24565b005b610411600480360360208110156103e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610db3565b604051808215151515815260200191505060405180910390f35b610433610dd0565b604051808215151515815260200191505060405180910390f35b610455610de7565b005b6104996004803603602081101561046d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610df2565b6040518082815260200191505060405180910390f35b6104fb600480360360408110156104c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e3a565b005b61053f6004803603602081101561051357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ecb565b005b610549610f35565b005b610553611096565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059d6110c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105dd5780820151818401526020810190506105c2565b50505050905090810190601f16801561060a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106646004803603604081101561062e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611162565b604051808215151515815260200191505060405180910390f35b6106ca6004803603604081101561069457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111f9565b604051808215151515815260200191505060405180910390f35b610746600480360360408110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611290565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff1615610883576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61088d8383611317565b905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f4e4f545f4f574e4552000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f5a45524f5f41444452000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610a0481610ecb565b610a2f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132e565b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b6000600760009054906101000a900460ff1615610b02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610b0d848484611388565b90509392505050565b6000600560009054906101000a900460ff16905090565b6000600760009054906101000a900460ff1615610bb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610bbc8383611439565b905092915050565b610bcd33610db3565b610c22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806120926030913960400191505060405180910390fd5b600760009054906101000a900460ff16610ca4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600760009054906101000a900460ff1615610da7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610db0816114de565b50565b6000610dc98260066114eb90919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b610df03361132e565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900460ff1615610ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ec782826115c9565b5050565b610ed433610db3565b610f29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806120926030913960400191505060405180910390fd5b610f32816115d7565b50565b610f3e33610db3565b610f93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806120926030913960400191505060405180910390fd5b600760009054906101000a900460ff1615611016576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff16156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111f18383611631565b905092915050565b6000600760009054906101000a900460ff161561127e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61128883836116d6565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006113243384846116ed565b6001905092915050565b6113428160066118e490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b60006113958484846119a1565b61142e843361142985600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6116ed565b600190509392505050565b60006114d433846114cf85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc690919063ffffffff16565b6116ed565b6001905092915050565b6114e83382611d4e565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121056022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d38282611eec565b5050565b6115eb816006611f9390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b60006116cc33846116c785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6116ed565b6001905092915050565b60006116e33384846119a1565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061216d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806120c26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6118ee82826114eb565b611943576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120e46021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806121486025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061206f6023913960400191505060405180910390fd5b611afe816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b91816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600080828401905083811015611d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121276021913960400191505060405180910390fd5b611de981600254611c3d90919063ffffffff16565b600281905550611e40816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611ef68282611d4e565b611f8f8233611f8a84600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6116ed565b5050565b611f9d82826114eb565b15612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158200a0b0acfdbe296e39c250025ddf6db817cea12e6dcbe2745e13a1cc01135393064736f6c634300050c0032506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000071195df596ea6636ac1594aa8ff4c3e1de1b231f0000000000000000000000001505432fcf9daef743ddcef6d09965d13c2113cd
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635c975abb116100b85780638456cb591161007c5780638456cb59146105415780638da5cb5b1461054b57806395d89b4114610595578063a457c2d714610618578063a9059cbb1461067e578063dd62ed3e146106e457610137565b80635c975abb1461042b5780636ef8d66d1461044d57806370a082311461045757806379cc6790146104af57806382dc1ec4146104fd57610137565b8063313ce567116100ff578063313ce5671461030d57806339509351146103315780633f4ba83a1461039757806342966c68146103a157806346fbf68e146103cf57610137565b806306fdde031461013c578063095ea7b3146101bf57806313af40351461022557806318160ddd1461026957806323b872dd14610287575b600080fd5b61014461075c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506107fe565b604051808215151515815260200191505060405180910390f35b6102676004803603602081101561023b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610895565b005b610271610a73565b6040518082815260200191505060405180910390f35b6102f36004803603606081101561029d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a7d565b604051808215151515815260200191505060405180910390f35b610315610b16565b604051808260ff1660ff16815260200191505060405180910390f35b61037d6004803603604081101561034757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b2d565b604051808215151515815260200191505060405180910390f35b61039f610bc4565b005b6103cd600480360360208110156103b757600080fd5b8101908080359060200190929190505050610d24565b005b610411600480360360208110156103e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610db3565b604051808215151515815260200191505060405180910390f35b610433610dd0565b604051808215151515815260200191505060405180910390f35b610455610de7565b005b6104996004803603602081101561046d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610df2565b6040518082815260200191505060405180910390f35b6104fb600480360360408110156104c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e3a565b005b61053f6004803603602081101561051357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ecb565b005b610549610f35565b005b610553611096565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059d6110c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105dd5780820151818401526020810190506105c2565b50505050905090810190601f16801561060a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106646004803603604081101561062e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611162565b604051808215151515815260200191505060405180910390f35b6106ca6004803603604081101561069457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111f9565b604051808215151515815260200191505060405180910390f35b610746600480360360408110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611290565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff1615610883576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61088d8383611317565b905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f4e4f545f4f574e4552000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f5a45524f5f41444452000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610a0481610ecb565b610a2f600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661132e565b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b6000600760009054906101000a900460ff1615610b02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610b0d848484611388565b90509392505050565b6000600560009054906101000a900460ff16905090565b6000600760009054906101000a900460ff1615610bb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610bbc8383611439565b905092915050565b610bcd33610db3565b610c22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806120926030913960400191505060405180910390fd5b600760009054906101000a900460ff16610ca4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600760009054906101000a900460ff1615610da7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610db0816114de565b50565b6000610dc98260066114eb90919063ffffffff16565b9050919050565b6000600760009054906101000a900460ff16905090565b610df03361132e565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900460ff1615610ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ec782826115c9565b5050565b610ed433610db3565b610f29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806120926030913960400191505060405180910390fd5b610f32816115d7565b50565b610f3e33610db3565b610f93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806120926030913960400191505060405180910390fd5b600760009054906101000a900460ff1615611016576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111585780601f1061112d57610100808354040283529160200191611158565b820191906000526020600020905b81548152906001019060200180831161113b57829003601f168201915b5050505050905090565b6000600760009054906101000a900460ff16156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111f18383611631565b905092915050565b6000600760009054906101000a900460ff161561127e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61128883836116d6565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006113243384846116ed565b6001905092915050565b6113428160066118e490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b60006113958484846119a1565b61142e843361142985600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6116ed565b600190509392505050565b60006114d433846114cf85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc690919063ffffffff16565b6116ed565b6001905092915050565b6114e83382611d4e565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611572576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121056022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d38282611eec565b5050565b6115eb816006611f9390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b60006116cc33846116c785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6116ed565b6001905092915050565b60006116e33384846119a1565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061216d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806120c26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6118ee82826114eb565b611943576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806120e46021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806121486025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061206f6023913960400191505060405180910390fd5b611afe816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b91816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611cb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600080828401905083811015611d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121276021913960400191505060405180910390fd5b611de981600254611c3d90919063ffffffff16565b600281905550611e40816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b611ef68282611d4e565b611f8f8233611f8a84600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c3d90919063ffffffff16565b6116ed565b5050565b611f9d82826114eb565b15612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158200a0b0acfdbe296e39c250025ddf6db817cea12e6dcbe2745e13a1cc01135393064736f6c634300050c0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000071195df596ea6636ac1594aa8ff4c3e1de1b231f0000000000000000000000001505432fcf9daef743ddcef6d09965d13c2113cd
-----Decoded View---------------
Arg [0] : _contractOwner (address): 0x71195dF596EA6636AC1594AA8Ff4c3E1DE1B231F
Arg [1] : _reserveHolder (address): 0x1505432fCf9DAEf743DDCef6d09965D13c2113cD
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000071195df596ea6636ac1594aa8ff4c3e1de1b231f
Arg [1] : 0000000000000000000000001505432fcf9daef743ddcef6d09965d13c2113cd
Deployed Bytecode Sourcemap
22309:992:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22309:992:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15317:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15317:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21724:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21724:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22767:238;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22767:238:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;8118:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21556:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21556:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16175:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21872:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21872:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21060:118;;;:::i;:::-;;23094:82;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23094:82:0;;;;;;;;;;;;;;;;;:::i;:::-;;18554:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18554:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20269:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18771:77;;;:::i;:::-;;8272:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8272:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23182:116;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23182:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18671:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18671:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20849:116;;;:::i;:::-;;23013:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15519:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;15519:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22047:177;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22047:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21416:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21416:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8814:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8814:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15317:83;15354:13;15387:5;15380:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15317:83;:::o;21724:140::-;21803:4;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21827:29;21841:7;21850:5;21827:13;:29::i;:::-;21820:36;;21724:140;;;;:::o;22767:238::-;22839:10;22829:20;;:6;;;;;;;;;;;:20;;;22821:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:1;22878:23;;:9;:23;;;;22870:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22924:20;22934:9;22924;:20::i;:::-;22951:21;22965:6;;;;;;;;;;;22951:13;:21::i;:::-;22990:9;22981:6;;:18;;;;;;;;;;;;;;;;;;22767:238;:::o;8118:91::-;8162:7;8189:12;;8182:19;;8118:91;:::o;21556:160::-;21649:4;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21673:35;21692:4;21698:2;21702:5;21673:18;:35::i;:::-;21666:42;;21556:160;;;;;:::o;16175:83::-;16216:5;16241:9;;;;;;;;;;;16234:16;;16175:83;:::o;21872:167::-;21963:4;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21987:44;22011:7;22020:10;21987:23;:44::i;:::-;21980:51;;21872:167;;;;:::o;21060:118::-;18453:20;18462:10;18453:8;:20::i;:::-;18445:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20705:7;;;;;;;;;;;20697:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21129:5;21119:7;;:15;;;;;;;;;;;;;;;;;;21150:20;21159:10;21150:20;;;;;;;;;;;;;;;;;;;;;;21060:118::o;23094:82::-;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23152:18;23163:6;23152:10;:18::i;:::-;23094:82;:::o;18554:109::-;18610:4;18634:21;18647:7;18634:8;:12;;:21;;;;:::i;:::-;18627:28;;18554:109;;;:::o;20269:78::-;20308:4;20332:7;;;;;;;;;;;20325:14;;20269:78;:::o;18771:77::-;18815:25;18829:10;18815:13;:25::i;:::-;18771:77::o;8272:110::-;8329:7;8356:9;:18;8366:7;8356:18;;;;;;;;;;;;;;;;8349:25;;8272:110;;;:::o;23182:116::-;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23261:31;23276:7;23285:6;23261:14;:31::i;:::-;23182:116;;:::o;18671:92::-;18453:20;18462:10;18453:8;:20::i;:::-;18445:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18736:19;18747:7;18736:10;:19::i;:::-;18671:92;:::o;20849:116::-;18453:20;18462:10;18453:8;:20::i;:::-;18445:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20919:4;20909:7;;:14;;;;;;;;;;;;;;;;;;20939:18;20946:10;20939:18;;;;;;;;;;;;;;;;;;;;;;20849:116::o;23013:75::-;23050:7;23076:6;;;;;;;;;;;23069:13;;23013:75;:::o;15519:87::-;15558:13;15591:7;15584:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15519:87;:::o;22047:177::-;22143:4;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22167:49;22191:7;22200:15;22167:23;:49::i;:::-;22160:56;;22047:177;;;;:::o;21416:132::-;21491:4;20506:7;;;;;;;;;;;20505:8;20497:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21515:25;21530:2;21534:5;21515:14;:25::i;:::-;21508:32;;21416:132;;;;:::o;8814:134::-;8886:7;8913:11;:18;8925:5;8913:18;;;;;;;;;;;;;;;:27;8932:7;8913:27;;;;;;;;;;;;;;;;8906:34;;8814:134;;;;:::o;9095:148::-;9160:4;9177:36;9186:10;9198:7;9207:5;9177:8;:36::i;:::-;9231:4;9224:11;;9095:148;;;;:::o;18986:130::-;19046:24;19062:7;19046:8;:15;;:24;;;;:::i;:::-;19100:7;19086:22;;;;;;;;;;;;18986:130;:::o;9714:256::-;9803:4;9820:36;9830:6;9838:9;9849:6;9820:9;:36::i;:::-;9867:73;9876:6;9884:10;9896:43;9932:6;9896:11;:19;9908:6;9896:19;;;;;;;;;;;;;;;:31;9916:10;9896:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;9867:8;:73::i;:::-;9958:4;9951:11;;9714:256;;;;;:::o;10379:206::-;10459:4;10476:79;10485:10;10497:7;10506:48;10543:10;10506:11;:23;10518:10;10506:23;;;;;;;;;;;;;;;:32;10530:7;10506:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;10476:8;:79::i;:::-;10573:4;10566:11;;10379:206;;;;:::o;16720:81::-;16768:25;16774:10;16786:6;16768:5;:25::i;:::-;16720:81;:::o;17836:203::-;17908:4;17952:1;17933:21;;:7;:21;;;;17925:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18011:4;:11;;:20;18023:7;18011:20;;;;;;;;;;;;;;;;;;;;;;;;;18004:27;;17836:203;;;;:::o;16863:103::-;16932:26;16942:7;16951:6;16932:9;:26::i;:::-;16863:103;;:::o;18856:122::-;18913:21;18926:7;18913:8;:12;;:21;;;;:::i;:::-;18962:7;18950:20;;;;;;;;;;;;18856:122;:::o;11088:216::-;11173:4;11190:84;11199:10;11211:7;11220:53;11257:15;11220:11;:23;11232:10;11220:23;;;;;;;;;;;;;;;:32;11244:7;11220:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;11190:8;:84::i;:::-;11292:4;11285:11;;11088:216;;;;:::o;8595:156::-;8664:4;8681:40;8691:10;8703:9;8714:6;8681:9;:40::i;:::-;8739:4;8732:11;;8595:156;;;;:::o;13890:335::-;14000:1;13983:19;;:5;:19;;;;13975:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14081:1;14062:21;;:7;:21;;;;14054:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14165:5;14135:11;:18;14147:5;14135:18;;;;;;;;;;;;;;;:27;14154:7;14135:27;;;;;;;;;;;;;;;:35;;;;14202:7;14186:31;;14195:5;14186:31;;;14211:5;14186:31;;;;;;;;;;;;;;;;;;13890:335;;;:::o;17558:183::-;17638:18;17642:4;17648:7;17638:3;:18::i;:::-;17630:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17728:5;17705:4;:11;;:20;17717:7;17705:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;17558:183;;:::o;11794:429::-;11910:1;11892:20;;:6;:20;;;;11884:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11994:1;11973:23;;:9;:23;;;;11965:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12069:29;12091:6;12069:9;:17;12079:6;12069:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;12049:9;:17;12059:6;12049:17;;;;;;;;;;;;;;;:49;;;;12132:32;12157:6;12132:9;:20;12142:9;12132:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12109:9;:20;12119:9;12109:20;;;;;;;;;;;;;;;:55;;;;12197:9;12180:35;;12189:6;12180:35;;;12208:6;12180:35;;;;;;;;;;;;;;;;;;11794:429;;;:::o;4240:184::-;4298:7;4331:1;4326;:6;;4318:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4378:9;4394:1;4390;:5;4378:17;;4415:1;4408:8;;;4240:184;;;;:::o;3784:181::-;3842:7;3862:9;3878:1;3874;:5;3862:17;;3903:1;3898;:6;;3890:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3956:1;3949:8;;;3784:181;;;;:::o;13144:306::-;13238:1;13219:21;;:7;:21;;;;13211:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13306:23;13323:5;13306:12;;:16;;:23;;;;:::i;:::-;13291:12;:38;;;;13361:29;13384:5;13361:9;:18;13371:7;13361:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;13340:9;:18;13350:7;13340:18;;;;;;;;;;;;;;;:50;;;;13432:1;13406:36;;13415:7;13406:36;;;13436:5;13406:36;;;;;;;;;;;;;;;;;;13144:306;;:::o;14410:188::-;14482:22;14488:7;14497:6;14482:5;:22::i;:::-;14515:75;14524:7;14533:10;14545:44;14582:6;14545:11;:20;14557:7;14545:20;;;;;;;;;;;;;;;:32;14566:10;14545:32;;;;;;;;;;;;;;;;:36;;:44;;;;:::i;:::-;14515:8;:75::i;:::-;14410:188;;:::o;17300:178::-;17378:18;17382:4;17388:7;17378:3;:18::i;:::-;17377:19;17369:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17466:4;17443;:11;;:20;17455:7;17443:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;17300:178;;:::o
Swarm Source
bzzr://0a0b0acfdbe296e39c250025ddf6db817cea12e6dcbe2745e13a1cc011353930
Loading...
Loading
Loading...
Loading
OVERVIEW
Becaz is a cryptocurrency that is related to time with blockchain infrastructure and uses the time as payment and investment asset.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.