Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
0 DEF
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DEFToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-29 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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. * * IMPORTANT: 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.6.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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. */ // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract DEFToken is Ownable, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 DEBASE_INTERVAL = 24 hours; string private _name; string private _symbol; uint8 private _decimals; uint256 public startTime; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; _totalSupply = _totalSupply.add(2000 ether); _balances[msg.sender] = _balances[msg.sender].add(2000 ether); emit Transfer(address(0), msg.sender, 2000 ether); } /** * @dev Returns the name of the token. */ function currentCycle() public view returns (uint) { return block.timestamp.sub(startTime).div(DEBASE_INTERVAL); } /** * @dev Returns the name of the token. */ function debaseCoefficent() public view returns (uint) { uint cycle = currentCycle(); uint256 c = 1e12; while (cycle > 0) { c = c.mul(9).div(10); cycle = cycle.sub(1); } return c; } /** * @dev Returns the name of the token. */ function debased(uint amount) public view returns (uint) { uint c = debaseCoefficent(); return amount.mul(c).div(1e12); } /** * @dev Returns the name of the token. */ function rebased(uint amount) public view returns (uint) { uint c = debaseCoefficent(); return amount.mul(1e12).div(c); } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: 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; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { uint256 supply = debased(_totalSupply); return supply > 1 ether ? supply : 0; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { uint256 balance = debased(_balances[account]); return balance > 1 ether ? balance : 0; } function start() public onlyOwner { require(startTime == 0, 'Already started!'); startTime = block.timestamp; } /** * @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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { uint cycle = currentCycle(); uint256 allow = _allowances[owner][spender]; while (cycle > 0) { allow = allow.mul(9).div(10); cycle = cycle.sub(1); } return allow > 1 ether ? allow : 0; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); 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 `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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 `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function burnFrom(address sender, uint256 amount) public onlyOwner returns (bool) { _balances[sender] = _balances[sender].sub(rebased(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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint ramount = rebased(amount); _balances[sender] = _balances[sender].sub(ramount, "ERC20: transfer amount exceeds balance"); if (balanceOf(recipient) == 0) { _balances[recipient] = ramount; } else { _balances[recipient] = _balances[recipient].add(ramount); } emit Transfer(sender, recipient, amount); } /** * @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 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"debaseCoefficent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"debased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rebased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620151806004553480156200001857600080fd5b506040516200159538038062001595833981810160405260408110156200003e57600080fd5b81019080805160405193929190846401000000008211156200005f57600080fd5b9083019060208201858111156200007557600080fd5b82516401000000008111828201881017156200009057600080fd5b82525081516020918201929091019080838360005b83811015620000bf578181015183820152602001620000a5565b50505050905090810190601f168015620000ed5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011157600080fd5b9083019060208201858111156200012757600080fd5b82516401000000008111828201881017156200014257600080fd5b82525081516020918201929091019080838360005b838110156200017157818101518382015260200162000157565b50505050905090810190601f1680156200019f5780820380516001836020036101000a031916815260200191505b506040525050506000620001b8620002f260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200021790600590602085019062000358565b5080516200022d90600690602084019062000358565b5060078054601260ff199091161790556003546200026190686c6b935b8bbd400000620002f6602090811b62000b2817901c565b600355336000908152600160209081526040909120546200029691686c6b935b8bbd4000009062000b28620002f6821b17901c565b336000818152600160209081526040808320949094558351686c6b935b8bbd40000081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050620003f4565b3390565b60008282018381101562000351576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200039b57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003cb578251825591602001919060010190620003ae565b50620003d9929150620003dd565b5090565b5b80821115620003d95760008155600101620003de565b61119180620004046000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610365578063a9059cbb14610391578063bab2f552146103bd578063be9a6555146103c5578063dd62ed3e146103cd578063f2fde38b146103fb57610137565b8063715018a6146102fb57806378e979251461030557806379cc67901461030d5780638da5cb5b1461033957806395d89b411461035d57610137565b8063313ce567116100ff578063313ce5671461026657806339509351146102845780634cf0f90a146102b05780636c4631e5146102b857806370a08231146102d557610137565b80630247f4a91461013c57806306fdde031461016b578063095ea7b3146101e857806318160ddd1461022857806323b872dd14610230575b600080fd5b6101596004803603602081101561015257600080fd5b5035610421565b60408051918252519081900360200190f35b61017361044e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ad578181015183820152602001610195565b50505050905090810190601f1680156101da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610214600480360360408110156101fe57600080fd5b506001600160a01b0381351690602001356104e4565b604080519115158252519081900360200190f35b610159610502565b6102146004803603606081101561024657600080fd5b506001600160a01b03813581169160208101359091169060400135610530565b61026e6105b7565b6040805160ff9092168252519081900360200190f35b6102146004803603604081101561029a57600080fd5b506001600160a01b0381351690602001356105c0565b61015961060e565b610159600480360360208110156102ce57600080fd5b503561064c565b610159600480360360208110156102eb57600080fd5b50356001600160a01b031661066c565b6103036106a8565b005b61015961074a565b6102146004803603604081101561032357600080fd5b506001600160a01b038135169060200135610750565b6103416107fc565b604080516001600160a01b039092168252519081900360200190f35b61017361080b565b6102146004803603604081101561037b57600080fd5b506001600160a01b03813516906020013561086c565b610214600480360360408110156103a757600080fd5b506001600160a01b0381351690602001356108d4565b6101596108e8565b61030361090a565b610159600480360360408110156103e357600080fd5b506001600160a01b03813581169160200135166109b0565b6103036004803603602081101561041157600080fd5b50356001600160a01b0316610a30565b60008061042c61060e565b905061044764e8d4a510006104418584610b82565b90610bdb565b9392505050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b60006104f86104f1610c1d565b8484610c21565b5060015b92915050565b600080610510600354610421565b9050670de0b6b3a7640000811161052857600061052a565b805b91505090565b600061053d848484610d0d565b6105ad84610549610c1d565b6105a8856040518060600160405280602881526020016110a6602891396001600160a01b038a16600090815260026020526040812090610587610c1d565b6001600160a01b031681526020810191909152604001600020549190610eb5565b610c21565b5060019392505050565b60075460ff1690565b60006104f86105cd610c1d565b846105a885600260006105de610c1d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b28565b6000806106196108e8565b905064e8d4a510005b811561052a57610638600a610441836009610b82565b9050610645826001610f4c565b9150610622565b60008061065761060e565b9050610447816104418564e8d4a51000610b82565b6001600160a01b038116600090815260016020526040812054819061069090610421565b9050670de0b6b3a764000081116104fc576000610447565b6106b0610c1d565b6000546001600160a01b03908116911614610700576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60085481565b600061075a610c1d565b6000546001600160a01b039081169116146107aa576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b6107d56107b68361064c565b6001600160a01b03851660009081526001602052604090205490610f4c565b6001600160a01b038416600090815260016020819052604090912091909155905092915050565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b60006104f8610879610c1d565b846105a88560405180606001604052806025815260200161113760259139600260006108a3610c1d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610eb5565b60006104f86108e1610c1d565b8484610d0d565b600061090560045461044160085442610f4c90919063ffffffff16565b905090565b610912610c1d565b6000546001600160a01b03908116911614610962576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b600854156109aa576040805162461bcd60e51b815260206004820152601060248201526f416c726561647920737461727465642160801b604482015290519081900360640190fd5b42600855565b6000806109bb6108e8565b6001600160a01b038086166000908152600260209081526040808320938816835292905220549091505b8115610a0f576109fb600a610441836009610b82565b9050610a08826001610f4c565b91506109e5565b670de0b6b3a76400008111610a25576000610a27565b805b95945050505050565b610a38610c1d565b6000546001600160a01b03908116911614610a88576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b6001600160a01b038116610acd5760405162461bcd60e51b81526004018080602001828103825260268152602001806110176026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610447576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082610b91575060006104fc565b82820282848281610b9e57fe5b04146104475760405162461bcd60e51b81526004018080602001828103825260218152602001806110856021913960400191505060405180910390fd5b600061044783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f8e565b3390565b6001600160a01b038316610c665760405162461bcd60e51b81526004018080602001828103825260248152602001806111136024913960400191505060405180910390fd5b6001600160a01b038216610cab5760405162461bcd60e51b815260040180806020018281038252602281526020018061103d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d525760405162461bcd60e51b81526004018080602001828103825260258152602001806110ee6025913960400191505060405180910390fd5b6001600160a01b038216610d975760405162461bcd60e51b8152600401808060200182810382526023815260200180610ff46023913960400191505060405180910390fd5b6000610da28261064c565b9050610de18160405180606001604052806026815260200161105f602691396001600160a01b0387166000908152600160205260409020549190610eb5565b6001600160a01b038516600090815260016020526040902055610e038361066c565b610e27576001600160a01b0383166000908152600160205260409020819055610e64565b6001600160a01b038316600090815260016020526040902054610e4a9082610b28565b6001600160a01b0384166000908152600160205260409020555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b60008184841115610f445760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f09578181015183820152602001610ef1565b50505050905090810190601f168015610f365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061044783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eb5565b60008183610fdd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f09578181015183820152602001610ef1565b506000838581610fe957fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122041a557ff3f2f7ae5722d47d912ed02182ab6b2f5706a9aca09685fb355708bb364736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008446546696e69746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034445460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d714610365578063a9059cbb14610391578063bab2f552146103bd578063be9a6555146103c5578063dd62ed3e146103cd578063f2fde38b146103fb57610137565b8063715018a6146102fb57806378e979251461030557806379cc67901461030d5780638da5cb5b1461033957806395d89b411461035d57610137565b8063313ce567116100ff578063313ce5671461026657806339509351146102845780634cf0f90a146102b05780636c4631e5146102b857806370a08231146102d557610137565b80630247f4a91461013c57806306fdde031461016b578063095ea7b3146101e857806318160ddd1461022857806323b872dd14610230575b600080fd5b6101596004803603602081101561015257600080fd5b5035610421565b60408051918252519081900360200190f35b61017361044e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ad578181015183820152602001610195565b50505050905090810190601f1680156101da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610214600480360360408110156101fe57600080fd5b506001600160a01b0381351690602001356104e4565b604080519115158252519081900360200190f35b610159610502565b6102146004803603606081101561024657600080fd5b506001600160a01b03813581169160208101359091169060400135610530565b61026e6105b7565b6040805160ff9092168252519081900360200190f35b6102146004803603604081101561029a57600080fd5b506001600160a01b0381351690602001356105c0565b61015961060e565b610159600480360360208110156102ce57600080fd5b503561064c565b610159600480360360208110156102eb57600080fd5b50356001600160a01b031661066c565b6103036106a8565b005b61015961074a565b6102146004803603604081101561032357600080fd5b506001600160a01b038135169060200135610750565b6103416107fc565b604080516001600160a01b039092168252519081900360200190f35b61017361080b565b6102146004803603604081101561037b57600080fd5b506001600160a01b03813516906020013561086c565b610214600480360360408110156103a757600080fd5b506001600160a01b0381351690602001356108d4565b6101596108e8565b61030361090a565b610159600480360360408110156103e357600080fd5b506001600160a01b03813581169160200135166109b0565b6103036004803603602081101561041157600080fd5b50356001600160a01b0316610a30565b60008061042c61060e565b905061044764e8d4a510006104418584610b82565b90610bdb565b9392505050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b60006104f86104f1610c1d565b8484610c21565b5060015b92915050565b600080610510600354610421565b9050670de0b6b3a7640000811161052857600061052a565b805b91505090565b600061053d848484610d0d565b6105ad84610549610c1d565b6105a8856040518060600160405280602881526020016110a6602891396001600160a01b038a16600090815260026020526040812090610587610c1d565b6001600160a01b031681526020810191909152604001600020549190610eb5565b610c21565b5060019392505050565b60075460ff1690565b60006104f86105cd610c1d565b846105a885600260006105de610c1d565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610b28565b6000806106196108e8565b905064e8d4a510005b811561052a57610638600a610441836009610b82565b9050610645826001610f4c565b9150610622565b60008061065761060e565b9050610447816104418564e8d4a51000610b82565b6001600160a01b038116600090815260016020526040812054819061069090610421565b9050670de0b6b3a764000081116104fc576000610447565b6106b0610c1d565b6000546001600160a01b03908116911614610700576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60085481565b600061075a610c1d565b6000546001600160a01b039081169116146107aa576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b6107d56107b68361064c565b6001600160a01b03851660009081526001602052604090205490610f4c565b6001600160a01b038416600090815260016020819052604090912091909155905092915050565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104da5780601f106104af576101008083540402835291602001916104da565b60006104f8610879610c1d565b846105a88560405180606001604052806025815260200161113760259139600260006108a3610c1d565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610eb5565b60006104f86108e1610c1d565b8484610d0d565b600061090560045461044160085442610f4c90919063ffffffff16565b905090565b610912610c1d565b6000546001600160a01b03908116911614610962576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b600854156109aa576040805162461bcd60e51b815260206004820152601060248201526f416c726561647920737461727465642160801b604482015290519081900360640190fd5b42600855565b6000806109bb6108e8565b6001600160a01b038086166000908152600260209081526040808320938816835292905220549091505b8115610a0f576109fb600a610441836009610b82565b9050610a08826001610f4c565b91506109e5565b670de0b6b3a76400008111610a25576000610a27565b805b95945050505050565b610a38610c1d565b6000546001600160a01b03908116911614610a88576040805162461bcd60e51b815260206004820181905260248201526000805160206110ce833981519152604482015290519081900360640190fd5b6001600160a01b038116610acd5760405162461bcd60e51b81526004018080602001828103825260268152602001806110176026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610447576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082610b91575060006104fc565b82820282848281610b9e57fe5b04146104475760405162461bcd60e51b81526004018080602001828103825260218152602001806110856021913960400191505060405180910390fd5b600061044783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f8e565b3390565b6001600160a01b038316610c665760405162461bcd60e51b81526004018080602001828103825260248152602001806111136024913960400191505060405180910390fd5b6001600160a01b038216610cab5760405162461bcd60e51b815260040180806020018281038252602281526020018061103d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d525760405162461bcd60e51b81526004018080602001828103825260258152602001806110ee6025913960400191505060405180910390fd5b6001600160a01b038216610d975760405162461bcd60e51b8152600401808060200182810382526023815260200180610ff46023913960400191505060405180910390fd5b6000610da28261064c565b9050610de18160405180606001604052806026815260200161105f602691396001600160a01b0387166000908152600160205260409020549190610eb5565b6001600160a01b038516600090815260016020526040902055610e038361066c565b610e27576001600160a01b0383166000908152600160205260409020819055610e64565b6001600160a01b038316600090815260016020526040902054610e4a9082610b28565b6001600160a01b0384166000908152600160205260409020555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b60008184841115610f445760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f09578181015183820152602001610ef1565b50505050905090810190601f168015610f365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061044783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610eb5565b60008183610fdd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f09578181015183820152602001610ef1565b506000838581610fe957fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122041a557ff3f2f7ae5722d47d912ed02182ab6b2f5706a9aca09685fb355708bb364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008446546696e69746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034445460000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): DeFinite
Arg [1] : symbol (string): DEF
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 446546696e697465000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4445460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18976:9656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20672:144;;;;;;;;;;;;;;;;-1:-1:-1;20672:144:0;;:::i;:::-;;;;;;;;;;;;;;;;21100:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23693:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23693:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22175:166;;;:::i;24336:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24336:321:0;;;;;;;;;;;;;;;;;:::i;22027:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25721:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25721:218:0;;;;;;;;:::i;20345:257::-;;;:::i;20886:144::-;;;;;;;;;;;;;;;;-1:-1:-1;20886:144:0;;:::i;22404:188::-;;;;;;;;;;;;;;;;-1:-1:-1;22404:188:0;-1:-1:-1;;;;;22404:188:0;;:::i;18420:148::-;;;:::i;:::-;;19386:24;;;:::i;25131:181::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25131:181:0;;;;;;;;:::i;17778:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;17778:79:0;;;;;;;;;;;;;;21302:87;;;:::i;26442:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26442:269:0;;;;;;;;:::i;22947:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22947:175:0;;;;;;;;:::i;20147:128::-;;;:::i;22600:134::-;;;:::i;23185:361::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23185:361:0;;;;;;;;;;:::i;18723:244::-;;;;;;;;;;;;;;;;-1:-1:-1;18723:244:0;-1:-1:-1;;;;;18723:244:0;;:::i;20672:144::-;20723:4;20740:6;20749:18;:16;:18::i;:::-;20740:27;-1:-1:-1;20785:23:0;20803:4;20785:13;:6;20740:27;20785:10;:13::i;:::-;:17;;:23::i;:::-;20778:30;20672:144;-1:-1:-1;;;20672:144:0:o;21100:83::-;21170:5;21163:12;;;;;;;;-1:-1:-1;;21163:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21137:13;;21163:12;;21170:5;;21163:12;;21170:5;21163:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21100:83;:::o;23693:169::-;23776:4;23793:39;23802:12;:10;:12::i;:::-;23816:7;23825:6;23793:8;:39::i;:::-;-1:-1:-1;23850:4:0;23693:169;;;;;:::o;22175:166::-;22228:7;22248:14;22265:21;22273:12;;22265:7;:21::i;:::-;22248:38;;22313:7;22304:6;:16;:29;;22332:1;22304:29;;;22323:6;22304:29;22297:36;;;22175:166;:::o;24336:321::-;24442:4;24459:36;24469:6;24477:9;24488:6;24459:9;:36::i;:::-;24506:121;24515:6;24523:12;:10;:12::i;:::-;24537:89;24575:6;24537:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24537:19:0;;;;;;:11;:19;;;;;;24557:12;:10;:12::i;:::-;-1:-1:-1;;;;;24537:33:0;;;;;;;;;;;;-1:-1:-1;24537:33:0;;;:89;:37;:89::i;:::-;24506:8;:121::i;:::-;-1:-1:-1;24645:4:0;24336:321;;;;;:::o;22027:83::-;22093:9;;;;22027:83;:::o;25721:218::-;25809:4;25826:83;25835:12;:10;:12::i;:::-;25849:7;25858:50;25897:10;25858:11;:25;25870:12;:10;:12::i;:::-;-1:-1:-1;;;;;25858:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25858:25:0;;;:34;;;;;;;;;;;:38;:50::i;20345:257::-;20394:4;20411:10;20424:14;:12;:14::i;:::-;20411:27;-1:-1:-1;20461:4:0;20476:100;20483:9;;20476:100;;20513:16;20526:2;20513:8;:1;20519;20513:5;:8::i;:16::-;20509:20;-1:-1:-1;20552:12:0;:5;20562:1;20552:9;:12::i;:::-;20544:20;;20476:100;;20886:144;20937:4;20954:6;20963:18;:16;:18::i;:::-;20954:27;-1:-1:-1;20999:23:0;20954:27;20999:16;:6;21010:4;20999:10;:16::i;22404:188::-;-1:-1:-1;;;;;22516:18:0;;22470:7;22516:18;;;:9;:18;;;;;;22470:7;;22508:27;;:7;:27::i;:::-;22490:45;;22563:7;22553;:17;:31;;22583:1;22553:31;;18420:148;18000:12;:10;:12::i;:::-;17990:6;;-1:-1:-1;;;;;17990:6:0;;;:22;;;17982:67;;;;;-1:-1:-1;;;17982:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17982:67:0;;;;;;;;;;;;;;;18527:1:::1;18511:6:::0;;18490:40:::1;::::0;-1:-1:-1;;;;;18511:6:0;;::::1;::::0;18490:40:::1;::::0;18527:1;;18490:40:::1;18558:1;18541:19:::0;;-1:-1:-1;;;;;;18541:19:0::1;::::0;;18420:148::o;19386:24::-;;;;:::o;25131:181::-;25207:4;18000:12;:10;:12::i;:::-;17990:6;;-1:-1:-1;;;;;17990:6:0;;;:22;;;17982:67;;;;;-1:-1:-1;;;17982:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17982:67:0;;;;;;;;;;;;;;;25244:38:::1;25266:15;25274:6;25266:7;:15::i;:::-;-1:-1:-1::0;;;;;25244:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;:21:::1;:38::i;:::-;-1:-1:-1::0;;;;;25224:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;;:58;;;;:9;-1:-1:-1;25131:181:0;;;;:::o;17778:79::-;17816:7;17843:6;-1:-1:-1;;;;;17843:6:0;17778:79;:::o;21302:87::-;21374:7;21367:14;;;;;;;;-1:-1:-1;;21367:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21341:13;;21367:14;;21374:7;;21367:14;;21374:7;21367:14;;;;;;;;;;;;;;;;;;;;;;;;26442:269;26535:4;26552:129;26561:12;:10;:12::i;:::-;26575:7;26584:96;26623:15;26584:96;;;;;;;;;;;;;;;;;:11;:25;26596:12;:10;:12::i;:::-;-1:-1:-1;;;;;26584:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26584:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22947:175::-;23033:4;23050:42;23060:12;:10;:12::i;:::-;23074:9;23085:6;23050:9;:42::i;20147:128::-;20192:4;20216:51;20251:15;;20216:30;20236:9;;20216:15;:19;;:30;;;;:::i;:51::-;20209:58;;20147:128;:::o;22600:134::-;18000:12;:10;:12::i;:::-;17990:6;;-1:-1:-1;;;;;17990:6:0;;;:22;;;17982:67;;;;;-1:-1:-1;;;17982:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17982:67:0;;;;;;;;;;;;;;;22653:9:::1;::::0;:14;22645:43:::1;;;::::0;;-1:-1:-1;;;22645:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22645:43:0;;;;;;;;;;;;;::::1;;22711:15;22699:9;:27:::0;22600:134::o;23185:361::-;23274:7;23294:10;23307:14;:12;:14::i;:::-;-1:-1:-1;;;;;23348:18:0;;;23332:13;23348:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;23294;;-1:-1:-1;23386:108:0;23393:9;;23386:108;;23427:20;23444:2;23427:12;:5;23437:1;23427:9;:12::i;:20::-;23419:28;-1:-1:-1;23470:12:0;:5;23480:1;23470:9;:12::i;:::-;23462:20;;23386:108;;;23519:7;23511:5;:15;:27;;23537:1;23511:27;;;23529:5;23511:27;23504:34;23185:361;-1:-1:-1;;;;;23185:361:0:o;18723:244::-;18000:12;:10;:12::i;:::-;17990:6;;-1:-1:-1;;;;;17990:6:0;;;:22;;;17982:67;;;;;-1:-1:-1;;;17982:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17982:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18812:22:0;::::1;18804:73;;;;-1:-1:-1::0;;;18804:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18914:6;::::0;;18893:38:::1;::::0;-1:-1:-1;;;;;18893:38:0;;::::1;::::0;18914:6;::::1;::::0;18893:38:::1;::::0;::::1;18942:6;:17:::0;;-1:-1:-1;;;;;;18942:17:0::1;-1:-1:-1::0;;;;;18942:17:0;;;::::1;::::0;;;::::1;::::0;;18723:244::o;4702:181::-;4760:7;4792:5;;;4816:6;;;;4808:46;;;;;-1:-1:-1;;;4808:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6056:471;6114:7;6359:6;6355:47;;-1:-1:-1;6389:1:0;6382:8;;6355:47;6426:5;;;6430:1;6426;:5;:1;6450:5;;;;;:10;6442:56;;;;-1:-1:-1;;;6442:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7003:132;7061:7;7088:39;7092:1;7095;7088:39;;;;;;;;;;;;;;;;;:3;:39::i;624:106::-;712:10;624:106;:::o;28283:346::-;-1:-1:-1;;;;;28385:19:0;;28377:68;;;;-1:-1:-1;;;28377:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28464:21:0;;28456:68;;;;-1:-1:-1;;;28456:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28537:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28589:32;;;;;;;;;;;;;;;;;28283:346;;;:::o;27201:642::-;-1:-1:-1;;;;;27307:20:0;;27299:70;;;;-1:-1:-1;;;27299:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27388:23:0;;27380:71;;;;-1:-1:-1;;;27380:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27462:12;27477:15;27485:6;27477:7;:15::i;:::-;27462:30;;27525:72;27547:7;27525:72;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27525:17:0;;;;;;:9;:17;;;;;;;:72;:21;:72::i;:::-;-1:-1:-1;;;;;27505:17:0;;;;;;:9;:17;;;;;:92;27612:20;27622:9;27612;:20::i;:::-;27608:177;;-1:-1:-1;;;;;27654:20:0;;;;;;:9;:20;;;;;:30;;;27608:177;;;-1:-1:-1;;;;;27740:20:0;;;;;;:9;:20;;;;;;:33;;27765:7;27740:24;:33::i;:::-;-1:-1:-1;;;;;27717:20:0;;;;;;:9;:20;;;;;:56;27608:177;27817:9;-1:-1:-1;;;;;27800:35:0;27809:6;-1:-1:-1;;;;;27800:35:0;;27828:6;27800:35;;;;;;;;;;;;;;;;;;27201:642;;;;:::o;5605:192::-;5691:7;5727:12;5719:6;;;;5711:29;;;;-1:-1:-1;;;5711:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5763:5:0;;;5605:192::o;5166:136::-;5224:7;5251:43;5255:1;5258;5251:43;;;;;;;;;;;;;;;;;:3;:43::i;7631:278::-;7717:7;7752:12;7745:5;7737:28;;;;-1:-1:-1;;;7737:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7776:9;7792:1;7788;:5;;;;;;;7631:278;-1:-1:-1;;;;;7631:278:0:o
Swarm Source
ipfs://41a557ff3f2f7ae5722d47d912ed02182ab6b2f5706a9aca09685fb355708bb3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.