Latest 25 from a total of 9,047 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 90165724 | 10 days ago | IN | 0 FTM | 0.00064906 | ||||
Approve | 88677750 | 26 days ago | IN | 0 FTM | 0.00028465 | ||||
Approve | 86593510 | 46 days ago | IN | 0 FTM | 0.00083977 | ||||
Approve | 85922116 | 52 days ago | IN | 0 FTM | 0.00051756 | ||||
Approve | 85791406 | 53 days ago | IN | 0 FTM | 0.00132259 | ||||
Approve | 85218498 | 59 days ago | IN | 0 FTM | 0.0003794 | ||||
Approve | 84518479 | 65 days ago | IN | 0 FTM | 0.00035389 | ||||
Approve | 84518457 | 65 days ago | IN | 0 FTM | 0.00035389 | ||||
Approve | 84518434 | 65 days ago | IN | 0 FTM | 0.00035389 | ||||
Approve | 84075639 | 70 days ago | IN | 0 FTM | 0.00010742 | ||||
Approve | 84075368 | 70 days ago | IN | 0 FTM | 0.00010742 | ||||
Approve | 84074896 | 70 days ago | IN | 0 FTM | 0.00010667 | ||||
Approve | 84074783 | 70 days ago | IN | 0 FTM | 0.00010667 | ||||
Approve | 84074727 | 70 days ago | IN | 0 FTM | 0.0001068 | ||||
Approve | 84066204 | 70 days ago | IN | 0 FTM | 0.00011769 | ||||
Approve | 84066196 | 70 days ago | IN | 0 FTM | 0.00011769 | ||||
Approve | 84066181 | 70 days ago | IN | 0 FTM | 0.00011769 | ||||
Approve | 83955084 | 71 days ago | IN | 0 FTM | 0.00025878 | ||||
Approve | 83722596 | 74 days ago | IN | 0 FTM | 0.00130376 | ||||
Approve | 82896449 | 85 days ago | IN | 0 FTM | 0.0027181 | ||||
Approve | 82764889 | 87 days ago | IN | 0 FTM | 0.00246843 | ||||
Approve | 82399629 | 93 days ago | IN | 0 FTM | 0.00087985 | ||||
Approve | 82209544 | 96 days ago | IN | 0 FTM | 0.00063205 | ||||
Approve | 81912541 | 100 days ago | IN | 0 FTM | 0.0004658 | ||||
Approve | 81788574 | 102 days ago | IN | 0 FTM | 0.00030352 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
18762534 | 1063 days ago | Contract Creation | 0 FTM |
Loading...
Loading
Contract Name:
DarkMatter
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 8500 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import "@openzeppelin/contracts/GSN/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/EnumerableSet.sol"; import "@openzeppelin/contracts/utils/Pausable.sol"; pragma experimental ABIEncoderV2; abstract contract DelegateERC20 is ERC20 { // @notice A record of each accounts delegate mapping(address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping(address => mapping(uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping(address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256( "EIP712Domain(string name,uint256 chainId,address verifyingContract)" ); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping(address => uint256) public nonces; // support delegates mint function _mint(address account, uint256 amount) internal virtual override { super._mint(account, amount); // add delegates to the minter _moveDelegates(address(0), _delegates[account], amount); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { super._transfer(sender, recipient, amount); _moveDelegates(_delegates[sender], _delegates[recipient], amount); } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry) ); bytes32 digest = keccak256( abi.encodePacked("\x19\x01", domainSeparator, structHash) ); address signatory = ecrecover(digest, v, r, s); require( signatory != address(0), "DarkMatter::delegateBySig: invalid signature" ); require( nonce == nonces[signatory]++, "DarkMatter::delegateBySig: invalid nonce" ); require( block.timestamp <= expiry, "DarkMatter::delegateBySig: signature expired" ); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) external view returns (uint256) { require( blockNumber < block.number, "DarkMatter::getPriorVotes: not yet determined" ); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying balances (not scaled); _delegates[delegator] = delegatee; _moveDelegates(currentDelegate, delegatee, delegatorBalance); emit DelegateChanged(delegator, currentDelegate, delegatee); } function _moveDelegates( address srcRep, address dstRep, uint256 amount ) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld - (amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld + (amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32( block.number, "DarkMatter:_writeCheckpoint: block number exceeds 32 bits" ); if ( nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber ) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint( blockNumber, newVotes ); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } /// @notice An event thats emitted when an account changes its delegate event DelegateChanged( address indexed delegator, address indexed fromDelegate, address indexed toDelegate ); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged( address indexed delegate, uint256 previousBalance, uint256 newBalance ); } // deflationary mechanism interface DeflationController { function checkDeflation( address origin, address caller, address from, address recipient, uint256 amount ) external view returns (uint256); } // 𝓓𝓪𝓻𝓴 𝓜𝓪𝓽𝓽𝓮𝓻 contract DarkMatter is DelegateERC20, Pausable, Ownable { uint256 private constant _initialSupply = 9350000 * 1e18; // initial supply minted 10.000.000 DMD (650k is minted for presale.) uint256 private constant _maxSupply = 85000000 * 1e18; // the maxSupply is 85.000.000 DMD uint256 private _burnTotal; address public deflationController; address public MasterChef; address public lockliquidity; address public presale; event SetDeflationController(address indexed _address); event SetMarterChef(address indexed _address); event Setlockliquidity(address indexed _address); using EnumerableSet for EnumerableSet.AddressSet; EnumerableSet.AddressSet private _minters; constructor() public ERC20("DarkMatter", "DMD") { _pause(); _mint(msg.sender, _initialSupply); } function mint(address _to, uint256 _amount) public onlyMinter returns (bool) { if (_amount.add(totalSupply()) > _maxSupply) { // mint with max supply ---> only 85.000.000 DMD return false; } _mint(_to, _amount); return true; } function getinitialSupply() external pure returns (uint256) { return _initialSupply; } function getMaxSupply() external pure returns (uint256) { return _maxSupply; } function burn(uint256 _amount) external { _burn(address(msg.sender), _amount); _burnTotal = _burnTotal + _amount; } function burnTotal() public view returns (uint256) { return _burnTotal; } function setMasterChef(address _address) public onlyOwner { //Masterchef contract address. MasterChef = _address; } function setlockliquidity(address _address) public onlyOwner { //address where liquidity will be locked. lockliquidity = _address; } function transfer(address recipient, uint256 amount) public override whenNotPaused returns (bool) { uint256 toBurn = 0; if (address(0) != deflationController && amount > 0) toBurn = DeflationController(deflationController).checkDeflation( tx.origin, _msgSender(), _msgSender(), recipient, amount ); if (toBurn > 0 && toBurn < amount) { amount = amount.sub(toBurn); _burn(_msgSender(), toBurn); } _transfer(_msgSender(), recipient, amount); return true; } function setDeflationController(address _address) external onlyOwner { // deflation controller contract address. deflationController = _address; } /** * @dev See {ERC20-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 override whenNotPaused returns (bool) { uint256 toBurn = 0; if (address(0) != deflationController && amount > 0) toBurn = DeflationController(deflationController).checkDeflation( tx.origin, _msgSender(), sender, recipient, amount ); if (toBurn > 0 && toBurn < amount) { amount = amount.sub(toBurn); _burn(sender, toBurn); } _transfer(sender, recipient, amount); _approve( sender, _msgSender(), allowance(sender, _msgSender()).sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function addMinter(address _addMinter) public onlyOwner returns (bool) { require( _addMinter != address(0), "DarkMatter: _addMinter is the zero address" ); return EnumerableSet.add(_minters, _addMinter); } function removeMinter(address _removeMinter) public onlyOwner returns (bool) { require( _removeMinter != address(0), "DarkMatter: _removeMinter is the zero address" ); return EnumerableSet.remove(_minters, _removeMinter); } function getMinterLength() public view returns (uint256) { return EnumerableSet.length(_minters); } function isMinter(address account) public view returns (bool) { return EnumerableSet.contains(_minters, account); } function getMinter(uint256 _index) public view onlyOwner returns (address) { require( _index <= getMinterLength() - 1, "DarkMatter: index out of bounds" ); return EnumerableSet.at(_minters, _index); } modifier onlyMinter() { require(isMinter(msg.sender), "caller is not the minter"); _; } //warning //The contract pause function will only be activated during the presale (why? "Some smart guy" could add the liquidity first than us giving a higher or lower price). // the owner of the token will be the Timelock and this function will not should be used at no time after the presale. function setPresale(address _presale) external onlyOwner { presale = _presale; } function unpause() external { require(msg.sender == presale, "DarkMatter: !presale"); _unpause(); } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/Context.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT 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); } } } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @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}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @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; } /** * @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) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 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) { return _allowances[owner][spender]; } /** * @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 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"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `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 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), 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); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/Context.sol"; /** * @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 Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ 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. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": true, "runs": 8500 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"SetDeflationController","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"SetMarterChef","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"Setlockliquidity","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"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MasterChef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","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":[],"name":"deflationController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getinitialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockliquidity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_removeMinter","type":"address"}],"name":"removeMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setDeflationController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setMasterChef","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_presale","type":"address"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setlockliquidity","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a8152602001692230b935a6b0ba3a32b960b11b8152506040518060400160405280600381526020016211135160ea1b815250816003908051906020019062000069929190620005d8565b5080516200007f906004906020840190620005d8565b50506005805460ff19908116601217909155600a80549091169055506000620000a762000124565b600a8054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200010762000128565b6200011e336a07bbf08400c8e107c00000620001a8565b6200078d565b3390565b600a5460ff1615620001575760405162461bcd60e51b81526004016200014e9062000715565b60405180910390fd5b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200018f62000124565b6040516200019e919062000674565b60405180910390a1565b620001bf8282620001ea60201b620015341760201c565b6001600160a01b03808316600090815260066020526040812054620001e6921683620002cd565b5050565b6001600160a01b038216620002135760405162461bcd60e51b81526004016200014e906200073f565b620002216000838362000404565b6200023d816002546200040960201b620015f41790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000270918390620015f462000409821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002c190859062000776565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620002f05750600081115b1562000404576001600160a01b038316156200037d576001600160a01b03831660009081526008602052604081205463ffffffff1690816200033457600062000366565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050828103620003798684848462000438565b5050505b6001600160a01b0382161562000404576001600160a01b03821660009081526008602052604081205463ffffffff169081620003bb576000620003ed565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050828101620004008584848462000438565b5050505b505050565b600082820183811015620004315760405162461bcd60e51b81526004016200014e90620006de565b9392505050565b60006200045f436040518060600160405280603981526020016200321a60399139620005a5565b905060008463ffffffff16118015620004a957506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15620004e8576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905562000559565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051620005969291906200077f565b60405180910390a25050505050565b6000816401000000008410620005d05760405162461bcd60e51b81526004016200014e919062000688565b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200061b57805160ff19168380011785556200064b565b828001600101855582156200064b579182015b828111156200064b5782518255916020019190600101906200062e565b50620006599291506200065d565b5090565b5b808211156200065957600081556001016200065e565b6001600160a01b0391909116815260200190565b6000602080835283518082850152825b81811015620006b65785810183015185820160400152820162000698565b81811115620006c85783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b612a7d806200079d6000396000f3fe608060405234801561001057600080fd5b50600436106102e95760003560e01c8063782d6fe111610191578063b0ee2d13116100e3578063dd62ed3e11610097578063f1127ed811610071578063f1127ed814610584578063f2fde38b146105a5578063fdea8e0b146105b8576102e9565b8063dd62ed3e14610561578063e7a324dc14610574578063e9ea46c71461057c576102e9565b8063c3cda520116100c8578063c3cda52014610533578063d5fcc7b614610546578063d6effdbb14610559576102e9565b8063b0ee2d1314610518578063b4b5ea5714610520576102e9565b8063983b2d5611610145578063a457c2d71161011f578063a457c2d7146104df578063a9059cbb146104f2578063aa271e1a14610505576102e9565b8063983b2d56146104b15780639a5c90ac146104c4578063a2d9f4dc146104cc576102e9565b806389db64b01161017657806389db64b01461048e5780638da5cb5b146104a157806395d89b41146104a9576102e9565b8063782d6fe1146104685780637ecebe001461047b576102e9565b80633f4ba83a1161024a5780635c19a95c116101fe57806370a08231116101d857806370a082311461043a578063715018a61461044d57806376fd580b14610455576102e9565b80635c19a95c146103ff5780635c975abb146104125780636fcfff451461041a576102e9565b806342966c681161022f57806342966c68146103c45780634c0f38c2146103d75780635b7121f8146103df576102e9565b80633f4ba83a146103a757806340c10f19146103b1576102e9565b806320606b70116102a15780633092afd5116102865780633092afd51461036c578063313ce5671461037f5780633950935114610394576102e9565b806320606b701461035157806323b872dd14610359576102e9565b8063095ea7b3116102d2578063095ea7b31461032157806310dc97c01461034157806318160ddd14610349576102e9565b80630323aac7146102ee57806306fdde031461030c575b600080fd5b6102f66105c0565b60405161030391906121d2565b60405180910390f35b6103146105d1565b6040516103039190612241565b61033461032f366004612052565b610667565b60405161030391906121c7565b6102f6610685565b6102f661068b565b6102f6610691565b610334610367366004612012565b6106b5565b61033461037a366004611fc3565b610817565b610387610884565b6040516103039190612956565b6103346103a2366004612052565b61088d565b6103af6108db565b005b6103346103bf366004612052565b61090f565b6103af6103d236600461211a565b61096c565b6102f6610981565b6103f26103ed36600461211a565b610990565b6040516103039190612180565b6103af61040d366004611fc3565b610a01565b610334610a0e565b61042d610428366004611fc3565b610a17565b604051610303919061292f565b6102f6610448366004611fc3565b610a2f565b6103af610a4a565b6103af610463366004611fc3565b610aeb565b6102f6610476366004612052565b610b5f565b6102f6610489366004611fc3565b610d48565b6103af61049c366004611fc3565b610d5a565b6103f2610dce565b610314610de2565b6103346104bf366004611fc3565b610e43565b6103f2610eb0565b6103af6104da366004611fc3565b610ebf565b6103346104ed366004612052565b610f33565b610334610500366004612052565b610f9b565b610334610513366004611fc3565b6110c7565b6102f66110d4565b6102f661052e366004611fc3565b6110e3565b6103af61054136600461207c565b611147565b6103af610554366004611fc3565b611339565b6103f26113ad565b6102f661056f366004611fde565b6113bc565b6102f66113e7565b6103f261140b565b6105976105923660046120db565b61141a565b604051610303929190612940565b6103af6105b3366004611fc3565b611447565b6103f2611525565b60006105cc6010611619565b905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067b610674611624565b8484611628565b5060015b92915050565b600b5490565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600a5460009060ff16156106e45760405162461bcd60e51b81526004016106db906125ab565b60405180910390fd5b600c546000906001600160a01b0316158015906107015750600083115b1561079657600c546001600160a01b03166388b19dcc32610720611624565b8888886040518663ffffffff1660e01b8152600401610743959493929190612194565b60206040518083038186803b15801561075b57600080fd5b505afa15801561076f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107939190612132565b90505b6000811180156107a557508281105b156107c0576107b483826116dc565b92506107c0858261171e565b6107cb8585856117f4565b61080c856107d7611624565b610807866040518060600160405280602881526020016129c2602891396108008b61056f611624565b9190611836565b611628565b506001949350505050565b6000610821611624565b600a5461010090046001600160a01b039081169116146108535760405162461bcd60e51b81526004016106db906126ad565b6001600160a01b0382166108795760405162461bcd60e51b81526004016106db906125e2565b61067f601083611862565b60055460ff1690565b600061067b61089a611624565b8461080785600160006108ab611624565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115f4565b600f546001600160a01b031633146109055760405162461bcd60e51b81526004016106db90612676565b61090d611877565b565b600061091a336110c7565b6109365760405162461bcd60e51b81526004016106db9061263f565b6a464f733baa0ae67500000061095461094d61068b565b84906115f4565b11156109625750600061067f565b61067b8383611901565b610976338261171e565b600b80549091019055565b6a464f733baa0ae67500000090565b600061099a611624565b600a5461010090046001600160a01b039081169116146109cc5760405162461bcd60e51b81526004016106db906126ad565b60016109d66105c0565b038211156109f65760405162461bcd60e51b81526004016106db906128b3565b61067f601083611934565b610a0b3382611940565b50565b600a5460ff1690565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610a52611624565b600a5461010090046001600160a01b03908116911614610a845760405162461bcd60e51b81526004016106db906126ad565b600a5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b610af3611624565b600a5461010090046001600160a01b03908116911614610b255760405162461bcd60e51b81526004016106db906126ad565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000438210610b805760405162461bcd60e51b81526004016106db906124f1565b6001600160a01b03831660009081526008602052604090205463ffffffff1680610bae57600091505061067f565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610c1d576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff1683529290522060010154905061067f565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015610c5857600091505061067f565b600060001982015b8163ffffffff168163ffffffff161115610d1157600282820363ffffffff16048103610c8a611f95565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610cec5760200151945061067f9350505050565b805163ffffffff16871115610d0357819350610d0a565b6001820392505b5050610c60565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b610d62611624565b600a5461010090046001600160a01b03908116911614610d945760405162461bcd60e51b81526004016106db906126ad565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600a5461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065d5780601f106106325761010080835404028352916020019161065d565b6000610e4d611624565b600a5461010090046001600160a01b03908116911614610e7f5760405162461bcd60e51b81526004016106db906126ad565b6001600160a01b038216610ea55760405162461bcd60e51b81526004016106db9061254e565b61067f601083611a0a565b600c546001600160a01b031681565b610ec7611624565b600a5461010090046001600160a01b03908116911614610ef95760405162461bcd60e51b81526004016106db906126ad565b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600061067b610f40611624565b84610807856040518060600160405280602581526020016129ea6025913960016000610f6a611624565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611836565b600a5460009060ff1615610fc15760405162461bcd60e51b81526004016106db906125ab565b600c546000906001600160a01b031615801590610fde5750600083115b1561107a57600c546001600160a01b03166388b19dcc32610ffd611624565b611005611624565b88886040518663ffffffff1660e01b8152600401611027959493929190612194565b60206040518083038186803b15801561103f57600080fd5b505afa158015611053573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110779190612132565b90505b60008111801561108957508281105b156110ab5761109883826116dc565b92506110ab6110a5611624565b8261171e565b6110bd6110b6611624565b85856117f4565b5060019392505050565b600061067f601083611a1f565b6a07bbf08400c8e107c0000090565b6001600160a01b03811660009081526008602052604081205463ffffffff168061110e576000611140565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666111726105d1565b80519060200120611181611a34565b3060405160200161119594939291906121ff565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016111e694939291906121db565b6040516020818303038152906040528051906020012090506000828260405160200161121392919061214a565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516112509493929190612223565b6020604051602081039080840390855afa158015611272573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166112c35760405162461bcd60e51b81526004016106db90612494565b6001600160a01b038116600090815260096020526040902080546001810190915589146113025760405162461bcd60e51b81526004016106db906126e2565b874211156113225760405162461bcd60e51b81526004016106db90612856565b61132c818b611940565b505050505b505050505050565b611341611624565b600a5461010090046001600160a01b039081169116146113735760405162461bcd60e51b81526004016106db906126ad565b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600e546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600d546001600160a01b031681565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b61144f611624565b600a5461010090046001600160a01b039081169116146114815760405162461bcd60e51b81526004016106db906126ad565b6001600160a01b0381166114a75760405162461bcd60e51b81526004016106db906123a3565b600a546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600f546001600160a01b031681565b6001600160a01b03821661155a5760405162461bcd60e51b81526004016106db906128ea565b61156660008383611831565b60025461157390826115f4565b6002556001600160a01b03821660009081526020819052604090205461159990826115f4565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115e89085906121d2565b60405180910390a35050565b6000828201838110156111405760405162461bcd60e51b81526004016106db9061245d565b600061067f82611a38565b3390565b6001600160a01b03831661164e5760405162461bcd60e51b81526004016106db906127f9565b6001600160a01b0382166116745760405162461bcd60e51b81526004016106db90612400565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906116cf9085906121d2565b60405180910390a3505050565b600061114083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611836565b6001600160a01b0382166117445760405162461bcd60e51b81526004016106db9061273f565b61175082600083611831565b61178d8160405180606001604052806022815260200161297a602291396001600160a01b0385166000908152602081905260409020549190611836565b6001600160a01b0383166000908152602081905260409020556002546117b390826116dc565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115e89085906121d2565b6117ff838383611a3c565b6001600160a01b0380841660009081526006602052604080822054858416835291205461183192918216911683611b51565b505050565b6000818484111561185a5760405162461bcd60e51b81526004016106db9190612241565b505050900390565b6000611140836001600160a01b038416611c78565b600a5460ff166118995760405162461bcd60e51b81526004016106db9061236c565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118ea611624565b6040516118f79190612180565b60405180910390a1565b61190b8282611534565b6001600160a01b03808316600090815260066020526040812054611930921683611b51565b5050565b60006111408383611d3e565b6001600160a01b038083166000908152600660205260408120549091169061196784610a2f565b6001600160a01b03858116600090815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691861691909117905590506119ba828483611b51565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b6000611140836001600160a01b038416611d83565b6000611140836001600160a01b038416611dcd565b4690565b5490565b6001600160a01b038316611a625760405162461bcd60e51b81526004016106db9061279c565b6001600160a01b038216611a885760405162461bcd60e51b81526004016106db9061230f565b611a93838383611831565b611ad08160405180606001604052806026815260200161299c602691396001600160a01b0386166000908152602081905260409020549190611836565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611aff90826115f4565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116cf9085906121d2565b816001600160a01b0316836001600160a01b031614158015611b735750600081115b15611831576001600160a01b03831615611bfa576001600160a01b03831660009081526008602052604081205463ffffffff169081611bb3576000611be5565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050828103611bf686848484611de5565b5050505b6001600160a01b03821615611831576001600160a01b03821660009081526008602052604081205463ffffffff169081611c35576000611c67565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905082810161133185848484611de5565b60008181526001830160205260408120548015611d345783546000198083019190810190600090879083908110611cab57fe5b9060005260206000200154905080876000018481548110611cc857fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611cf857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061067f565b600091505061067f565b81546000908210611d615760405162461bcd60e51b81526004016106db906122b2565b826000018281548110611d7057fe5b9060005260206000200154905092915050565b6000611d8f8383611dcd565b611dc55750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561067f565b50600061067f565b60009081526001919091016020526040902054151590565b6000611e0943604051806060016040528060398152602001612a0f60399139611f65565b905060008463ffffffff16118015611e5257506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611e8f576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611f1b565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611f56929190612921565b60405180910390a25050505050565b6000816401000000008410611f8d5760405162461bcd60e51b81526004016106db9190612241565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461067f57600080fd5b600060208284031215611fd4578081fd5b6111408383611fac565b60008060408385031215611ff0578081fd5b611ffa8484611fac565b91506120098460208501611fac565b90509250929050565b600080600060608486031215612026578081fd5b833561203181612964565b9250602084013561204181612964565b929592945050506040919091013590565b60008060408385031215612064578182fd5b61206e8484611fac565b946020939093013593505050565b60008060008060008060c08789031215612094578182fd5b61209e8888611fac565b95506020870135945060408701359350606087013560ff811681146120c1578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156120ed578182fd5b6120f78484611fac565b9150602083013563ffffffff8116811461210f578182fd5b809150509250929050565b60006020828403121561212b578081fd5b5035919050565b600060208284031215612143578081fd5b5051919050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b039586168152938516602085015291841660408401529092166060820152608081019190915260a00190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b8181101561226d57858101830151858201604001528201612251565b8181111561227e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602c908201527f4461726b4d61747465723a3a64656c656761746542795369673a20696e76616c60408201527f6964207369676e61747572650000000000000000000000000000000000000000606082015260800190565b6020808252602d908201527f4461726b4d61747465723a3a6765745072696f72566f7465733a206e6f74207960408201527f65742064657465726d696e656400000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f4461726b4d61747465723a205f6164644d696e74657220697320746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b6020808252602d908201527f4461726b4d61747465723a205f72656d6f76654d696e7465722069732074686560408201527f207a65726f206164647265737300000000000000000000000000000000000000606082015260800190565b60208082526018908201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604082015260600190565b60208082526014908201527f4461726b4d61747465723a202170726573616c65000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f4461726b4d61747465723a3a64656c656761746542795369673a20696e76616c60408201527f6964206e6f6e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4461726b4d61747465723a3a64656c656761746542795369673a207369676e6160408201527f7475726520657870697265640000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4461726b4d61747465723a20696e646578206f7574206f6620626f756e647300604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b0381168114610a0b57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4461726b4d61747465723a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220015136dc4becc9474478a78d19f4022b374328995ccd23a06b18b4f5bf672c5d64736f6c634300060c00334461726b4d61747465723a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102e95760003560e01c8063782d6fe111610191578063b0ee2d13116100e3578063dd62ed3e11610097578063f1127ed811610071578063f1127ed814610584578063f2fde38b146105a5578063fdea8e0b146105b8576102e9565b8063dd62ed3e14610561578063e7a324dc14610574578063e9ea46c71461057c576102e9565b8063c3cda520116100c8578063c3cda52014610533578063d5fcc7b614610546578063d6effdbb14610559576102e9565b8063b0ee2d1314610518578063b4b5ea5714610520576102e9565b8063983b2d5611610145578063a457c2d71161011f578063a457c2d7146104df578063a9059cbb146104f2578063aa271e1a14610505576102e9565b8063983b2d56146104b15780639a5c90ac146104c4578063a2d9f4dc146104cc576102e9565b806389db64b01161017657806389db64b01461048e5780638da5cb5b146104a157806395d89b41146104a9576102e9565b8063782d6fe1146104685780637ecebe001461047b576102e9565b80633f4ba83a1161024a5780635c19a95c116101fe57806370a08231116101d857806370a082311461043a578063715018a61461044d57806376fd580b14610455576102e9565b80635c19a95c146103ff5780635c975abb146104125780636fcfff451461041a576102e9565b806342966c681161022f57806342966c68146103c45780634c0f38c2146103d75780635b7121f8146103df576102e9565b80633f4ba83a146103a757806340c10f19146103b1576102e9565b806320606b70116102a15780633092afd5116102865780633092afd51461036c578063313ce5671461037f5780633950935114610394576102e9565b806320606b701461035157806323b872dd14610359576102e9565b8063095ea7b3116102d2578063095ea7b31461032157806310dc97c01461034157806318160ddd14610349576102e9565b80630323aac7146102ee57806306fdde031461030c575b600080fd5b6102f66105c0565b60405161030391906121d2565b60405180910390f35b6103146105d1565b6040516103039190612241565b61033461032f366004612052565b610667565b60405161030391906121c7565b6102f6610685565b6102f661068b565b6102f6610691565b610334610367366004612012565b6106b5565b61033461037a366004611fc3565b610817565b610387610884565b6040516103039190612956565b6103346103a2366004612052565b61088d565b6103af6108db565b005b6103346103bf366004612052565b61090f565b6103af6103d236600461211a565b61096c565b6102f6610981565b6103f26103ed36600461211a565b610990565b6040516103039190612180565b6103af61040d366004611fc3565b610a01565b610334610a0e565b61042d610428366004611fc3565b610a17565b604051610303919061292f565b6102f6610448366004611fc3565b610a2f565b6103af610a4a565b6103af610463366004611fc3565b610aeb565b6102f6610476366004612052565b610b5f565b6102f6610489366004611fc3565b610d48565b6103af61049c366004611fc3565b610d5a565b6103f2610dce565b610314610de2565b6103346104bf366004611fc3565b610e43565b6103f2610eb0565b6103af6104da366004611fc3565b610ebf565b6103346104ed366004612052565b610f33565b610334610500366004612052565b610f9b565b610334610513366004611fc3565b6110c7565b6102f66110d4565b6102f661052e366004611fc3565b6110e3565b6103af61054136600461207c565b611147565b6103af610554366004611fc3565b611339565b6103f26113ad565b6102f661056f366004611fde565b6113bc565b6102f66113e7565b6103f261140b565b6105976105923660046120db565b61141a565b604051610303929190612940565b6103af6105b3366004611fc3565b611447565b6103f2611525565b60006105cc6010611619565b905090565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b600061067b610674611624565b8484611628565b5060015b92915050565b600b5490565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600a5460009060ff16156106e45760405162461bcd60e51b81526004016106db906125ab565b60405180910390fd5b600c546000906001600160a01b0316158015906107015750600083115b1561079657600c546001600160a01b03166388b19dcc32610720611624565b8888886040518663ffffffff1660e01b8152600401610743959493929190612194565b60206040518083038186803b15801561075b57600080fd5b505afa15801561076f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107939190612132565b90505b6000811180156107a557508281105b156107c0576107b483826116dc565b92506107c0858261171e565b6107cb8585856117f4565b61080c856107d7611624565b610807866040518060600160405280602881526020016129c2602891396108008b61056f611624565b9190611836565b611628565b506001949350505050565b6000610821611624565b600a5461010090046001600160a01b039081169116146108535760405162461bcd60e51b81526004016106db906126ad565b6001600160a01b0382166108795760405162461bcd60e51b81526004016106db906125e2565b61067f601083611862565b60055460ff1690565b600061067b61089a611624565b8461080785600160006108ab611624565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115f4565b600f546001600160a01b031633146109055760405162461bcd60e51b81526004016106db90612676565b61090d611877565b565b600061091a336110c7565b6109365760405162461bcd60e51b81526004016106db9061263f565b6a464f733baa0ae67500000061095461094d61068b565b84906115f4565b11156109625750600061067f565b61067b8383611901565b610976338261171e565b600b80549091019055565b6a464f733baa0ae67500000090565b600061099a611624565b600a5461010090046001600160a01b039081169116146109cc5760405162461bcd60e51b81526004016106db906126ad565b60016109d66105c0565b038211156109f65760405162461bcd60e51b81526004016106db906128b3565b61067f601083611934565b610a0b3382611940565b50565b600a5460ff1690565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610a52611624565b600a5461010090046001600160a01b03908116911614610a845760405162461bcd60e51b81526004016106db906126ad565b600a5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b610af3611624565b600a5461010090046001600160a01b03908116911614610b255760405162461bcd60e51b81526004016106db906126ad565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000438210610b805760405162461bcd60e51b81526004016106db906124f1565b6001600160a01b03831660009081526008602052604090205463ffffffff1680610bae57600091505061067f565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610c1d576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff1683529290522060010154905061067f565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015610c5857600091505061067f565b600060001982015b8163ffffffff168163ffffffff161115610d1157600282820363ffffffff16048103610c8a611f95565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610cec5760200151945061067f9350505050565b805163ffffffff16871115610d0357819350610d0a565b6001820392505b5050610c60565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b610d62611624565b600a5461010090046001600160a01b03908116911614610d945760405162461bcd60e51b81526004016106db906126ad565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600a5461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561065d5780601f106106325761010080835404028352916020019161065d565b6000610e4d611624565b600a5461010090046001600160a01b03908116911614610e7f5760405162461bcd60e51b81526004016106db906126ad565b6001600160a01b038216610ea55760405162461bcd60e51b81526004016106db9061254e565b61067f601083611a0a565b600c546001600160a01b031681565b610ec7611624565b600a5461010090046001600160a01b03908116911614610ef95760405162461bcd60e51b81526004016106db906126ad565b600d80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600061067b610f40611624565b84610807856040518060600160405280602581526020016129ea6025913960016000610f6a611624565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611836565b600a5460009060ff1615610fc15760405162461bcd60e51b81526004016106db906125ab565b600c546000906001600160a01b031615801590610fde5750600083115b1561107a57600c546001600160a01b03166388b19dcc32610ffd611624565b611005611624565b88886040518663ffffffff1660e01b8152600401611027959493929190612194565b60206040518083038186803b15801561103f57600080fd5b505afa158015611053573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110779190612132565b90505b60008111801561108957508281105b156110ab5761109883826116dc565b92506110ab6110a5611624565b8261171e565b6110bd6110b6611624565b85856117f4565b5060019392505050565b600061067f601083611a1f565b6a07bbf08400c8e107c0000090565b6001600160a01b03811660009081526008602052604081205463ffffffff168061110e576000611140565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666111726105d1565b80519060200120611181611a34565b3060405160200161119594939291906121ff565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016111e694939291906121db565b6040516020818303038152906040528051906020012090506000828260405160200161121392919061214a565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516112509493929190612223565b6020604051602081039080840390855afa158015611272573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b0381166112c35760405162461bcd60e51b81526004016106db90612494565b6001600160a01b038116600090815260096020526040902080546001810190915589146113025760405162461bcd60e51b81526004016106db906126e2565b874211156113225760405162461bcd60e51b81526004016106db90612856565b61132c818b611940565b505050505b505050505050565b611341611624565b600a5461010090046001600160a01b039081169116146113735760405162461bcd60e51b81526004016106db906126ad565b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600e546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600d546001600160a01b031681565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b61144f611624565b600a5461010090046001600160a01b039081169116146114815760405162461bcd60e51b81526004016106db906126ad565b6001600160a01b0381166114a75760405162461bcd60e51b81526004016106db906123a3565b600a546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b600f546001600160a01b031681565b6001600160a01b03821661155a5760405162461bcd60e51b81526004016106db906128ea565b61156660008383611831565b60025461157390826115f4565b6002556001600160a01b03821660009081526020819052604090205461159990826115f4565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115e89085906121d2565b60405180910390a35050565b6000828201838110156111405760405162461bcd60e51b81526004016106db9061245d565b600061067f82611a38565b3390565b6001600160a01b03831661164e5760405162461bcd60e51b81526004016106db906127f9565b6001600160a01b0382166116745760405162461bcd60e51b81526004016106db90612400565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906116cf9085906121d2565b60405180910390a3505050565b600061114083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611836565b6001600160a01b0382166117445760405162461bcd60e51b81526004016106db9061273f565b61175082600083611831565b61178d8160405180606001604052806022815260200161297a602291396001600160a01b0385166000908152602081905260409020549190611836565b6001600160a01b0383166000908152602081905260409020556002546117b390826116dc565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115e89085906121d2565b6117ff838383611a3c565b6001600160a01b0380841660009081526006602052604080822054858416835291205461183192918216911683611b51565b505050565b6000818484111561185a5760405162461bcd60e51b81526004016106db9190612241565b505050900390565b6000611140836001600160a01b038416611c78565b600a5460ff166118995760405162461bcd60e51b81526004016106db9061236c565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118ea611624565b6040516118f79190612180565b60405180910390a1565b61190b8282611534565b6001600160a01b03808316600090815260066020526040812054611930921683611b51565b5050565b60006111408383611d3e565b6001600160a01b038083166000908152600660205260408120549091169061196784610a2f565b6001600160a01b03858116600090815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691861691909117905590506119ba828483611b51565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b6000611140836001600160a01b038416611d83565b6000611140836001600160a01b038416611dcd565b4690565b5490565b6001600160a01b038316611a625760405162461bcd60e51b81526004016106db9061279c565b6001600160a01b038216611a885760405162461bcd60e51b81526004016106db9061230f565b611a93838383611831565b611ad08160405180606001604052806026815260200161299c602691396001600160a01b0386166000908152602081905260409020549190611836565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611aff90826115f4565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116cf9085906121d2565b816001600160a01b0316836001600160a01b031614158015611b735750600081115b15611831576001600160a01b03831615611bfa576001600160a01b03831660009081526008602052604081205463ffffffff169081611bb3576000611be5565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050828103611bf686848484611de5565b5050505b6001600160a01b03821615611831576001600160a01b03821660009081526008602052604081205463ffffffff169081611c35576000611c67565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905082810161133185848484611de5565b60008181526001830160205260408120548015611d345783546000198083019190810190600090879083908110611cab57fe5b9060005260206000200154905080876000018481548110611cc857fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611cf857fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061067f565b600091505061067f565b81546000908210611d615760405162461bcd60e51b81526004016106db906122b2565b826000018281548110611d7057fe5b9060005260206000200154905092915050565b6000611d8f8383611dcd565b611dc55750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561067f565b50600061067f565b60009081526001919091016020526040902054151590565b6000611e0943604051806060016040528060398152602001612a0f60399139611f65565b905060008463ffffffff16118015611e5257506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611e8f576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611f1b565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611f56929190612921565b60405180910390a25050505050565b6000816401000000008410611f8d5760405162461bcd60e51b81526004016106db9190612241565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461067f57600080fd5b600060208284031215611fd4578081fd5b6111408383611fac565b60008060408385031215611ff0578081fd5b611ffa8484611fac565b91506120098460208501611fac565b90509250929050565b600080600060608486031215612026578081fd5b833561203181612964565b9250602084013561204181612964565b929592945050506040919091013590565b60008060408385031215612064578182fd5b61206e8484611fac565b946020939093013593505050565b60008060008060008060c08789031215612094578182fd5b61209e8888611fac565b95506020870135945060408701359350606087013560ff811681146120c1578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156120ed578182fd5b6120f78484611fac565b9150602083013563ffffffff8116811461210f578182fd5b809150509250929050565b60006020828403121561212b578081fd5b5035919050565b600060208284031215612143578081fd5b5051919050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b039586168152938516602085015291841660408401529092166060820152608081019190915260a00190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b8181101561226d57858101830151858201604001528201612251565b8181111561227e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60408201527f6473000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602c908201527f4461726b4d61747465723a3a64656c656761746542795369673a20696e76616c60408201527f6964207369676e61747572650000000000000000000000000000000000000000606082015260800190565b6020808252602d908201527f4461726b4d61747465723a3a6765745072696f72566f7465733a206e6f74207960408201527f65742064657465726d696e656400000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f4461726b4d61747465723a205f6164644d696e74657220697320746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b6020808252602d908201527f4461726b4d61747465723a205f72656d6f76654d696e7465722069732074686560408201527f207a65726f206164647265737300000000000000000000000000000000000000606082015260800190565b60208082526018908201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604082015260600190565b60208082526014908201527f4461726b4d61747465723a202170726573616c65000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f4461726b4d61747465723a3a64656c656761746542795369673a20696e76616c60408201527f6964206e6f6e6365000000000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360408201527f7300000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4461726b4d61747465723a3a64656c656761746542795369673a207369676e6160408201527f7475726520657870697265640000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f4461726b4d61747465723a20696e646578206f7574206f6620626f756e647300604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b0381168114610a0b57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4461726b4d61747465723a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220015136dc4becc9474478a78d19f4022b374328995ccd23a06b18b4f5bf672c5d64736f6c634300060c0033
Loading...
Loading
Loading...
Loading
OVERVIEW
Dark Matter DeFi (DMD) was created with the vision to bring NFT staking with a storyline to the world of DeFi farming.Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
FTM | 100.00% | $0.000101 | 110,120 | $11.1 |
[ Download: CSV Export ]
[ 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.