ERC-20
Insurance
Overview
Max Total Supply
203,580,952.36 NPM
Holders
182 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$13,428.91
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
11 NPMValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NPM
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Neptune Mutual Protocol (https://neptunemutual.com) // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol"; import "./WithRecovery.sol"; import "./WithPausability.sol"; contract NPM is WithPausability, WithRecovery, ERC20 { uint256 private constant _CAP = 1_000_000_000 ether; uint256 private _issued = 0; event Minted(bytes32 indexed key, address indexed account, uint256 amount); constructor( address timelockOrOwner, string memory tokenName, string memory tokenSymbol ) Ownable() Pausable() ERC20(tokenName, tokenSymbol) { require(timelockOrOwner != address(0), "Invalid owner"); require(bytes(tokenName).length > 0, "Invalid token name"); require(bytes(tokenSymbol).length > 0, "Invalid token symbol"); super._transferOwnership(timelockOrOwner); } // slither-disable-next-line dead-code function _beforeTokenTransfer( address, address, uint256 ) internal view virtual override whenNotPaused {} // solhint-disable-line function issueMany( bytes32 key, address[] calldata receivers, uint256[] calldata amounts ) external onlyOwner whenNotPaused { require(receivers.length > 0, "No receiver"); require(receivers.length == amounts.length, "Invalid args"); _issued += _sumOf(amounts); require(_issued <= _CAP, "Cap exceeded"); for (uint256 i = 0; i < receivers.length; i++) { _issue(key, receivers[i], amounts[i]); } } function transferMany(address[] calldata receivers, uint256[] calldata amounts) external onlyOwner whenNotPaused { require(receivers.length > 0, "No receiver"); require(receivers.length == amounts.length, "Invalid args"); for (uint256 i = 0; i < receivers.length; i++) { super.transfer(receivers[i], amounts[i]); } } function _issue( bytes32 key, address mintTo, uint256 amount ) private { require(amount > 0, "Invalid amount"); super._mint(mintTo, amount); emit Minted(key, mintTo, amount); } function _sumOf(uint256[] calldata amounts) private pure returns (uint256 total) { for (uint256 i = 0; i < amounts.length; i++) { total += amounts[i]; } } }
// Neptune Mutual Protocol (https://neptunemutual.com) // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/security/Pausable.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; abstract contract WithPausability is Pausable, Ownable { mapping(address => bool) public pausers; event PausersSet(address indexed addedBy, address[] accounts, bool[] statuses); /** * * @dev Accepts a list of accounts and their respective statuses for addition or removal as pausers. * * @custom:suppress-reentrancy Risk tolerable. Can only be called by the owner. * @custom:suppress-address-trust-issue Risk tolerable. */ function setPausers(address[] calldata accounts, bool[] calldata statuses) external onlyOwner whenNotPaused { require(accounts.length > 0, "No pauser specified"); require(accounts.length == statuses.length, "Invalid args"); for (uint256 i = 0; i < accounts.length; i++) { pausers[accounts[i]] = statuses[i]; } emit PausersSet(msg.sender, accounts, statuses); } /** * @dev Pauses the token * * @custom:suppress-reentrancy Risk tolerable. Can only be called by a pauser. * */ function pause() external { require(pausers[msg.sender], "Forbidden"); super._pause(); } /** * @dev Unpauses the token * * @custom:suppress-reentrancy Risk tolerable. Can only be called by the owner. * */ function unpause() external onlyOwner { super._unpause(); } }
// Neptune Mutual Protocol (https://neptunemutual.com) // SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import "openzeppelin-solidity/contracts/token/ERC20/utils/SafeERC20.sol"; import "openzeppelin-solidity/contracts/access/Ownable.sol"; abstract contract WithRecovery is Ownable { using SafeERC20 for IERC20; /** * @dev Recover all Ether held by the contract. * * @custom:suppress-pausable Risk tolerable because of the ACL * */ function recoverEther(address sendTo) external onlyOwner { // slither-disable-next-line low-level-calls (bool success, ) = payable(sendTo).call{value: address(this).balance}(""); // solhint-disable-line avoid-low-level-calls require(success, "Recipient may have reverted"); } /** * @dev Recover an ERC-20 compatible token sent to this contract. * @param malicious ERC-20 The address of the token contract * @param sendTo The address that receives the recovered tokens * * @custom:suppress-pausable Risk tolerable because of the ACL * */ function recoverToken(IERC20 malicious, address sendTo) external onlyOwner { malicious.safeTransfer(sendTo, malicious.balanceOf(address(this))); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/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. */ abstract 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() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual 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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.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 // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @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"); (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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"timelockOrOwner","type":"address"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"key","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"addedBy","type":"address"},{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool[]","name":"statuses","type":"bool[]"}],"name":"PausersSet","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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"issueMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pausers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sendTo","type":"address"}],"name":"recoverEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"malicious","type":"address"},{"internalType":"address","name":"sendTo","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool[]","name":"statuses","type":"bool[]"}],"name":"setPausers","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":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferMany","outputs":[],"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
608060405260006007553480156200001657600080fd5b50604051620029f2380380620029f2833981016040819052620000399162000294565b6000805460ff191690558181620000503362000176565b60056200005e8382620003ad565b5060066200006d8282620003ad565b5050506001600160a01b038316620000bc5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b60448201526064015b60405180910390fd5b6000825111620001045760405162461bcd60e51b8152602060048201526012602482015271496e76616c696420746f6b656e206e616d6560701b6044820152606401620000b3565b6000815111620001575760405162461bcd60e51b815260206004820152601460248201527f496e76616c696420746f6b656e2073796d626f6c0000000000000000000000006044820152606401620000b3565b6200016d836200017660201b620013d71760201c565b50505062000479565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001f757600080fd5b81516001600160401b0380821115620002145762000214620001cf565b604051601f8301601f19908116603f011681019082821181831017156200023f576200023f620001cf565b816040528381526020925086838588010111156200025c57600080fd5b600091505b8382101562000280578582018301518183018401529082019062000261565b600093810190920192909252949350505050565b600080600060608486031215620002aa57600080fd5b83516001600160a01b0381168114620002c257600080fd5b60208501519093506001600160401b0380821115620002e057600080fd5b620002ee87838801620001e5565b935060408601519150808211156200030557600080fd5b506200031486828701620001e5565b9150509250925092565b600181811c908216806200033357607f821691505b6020821081036200035457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a857600081815260208120601f850160051c81016020861015620003835750805b601f850160051c820191505b81811015620003a4578281556001016200038f565b5050505b505050565b81516001600160401b03811115620003c957620003c9620001cf565b620003e181620003da84546200031e565b846200035a565b602080601f831160018114620004195760008415620004005750858301515b600019600386901b1c1916600185901b178555620003a4565b600085815260208120601f198616915b828110156200044a5788860151825594840194600190910190840162000429565b5085821015620004695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61256980620004896000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c806380f51c12116100e3578063b7fc66121161008c578063eec4ff1611610066578063eec4ff1614610388578063f2fde38b1461039b578063feaea586146103ae57600080fd5b8063b7fc66121461031c578063dd62ed3e1461032f578063e9874f511461037557600080fd5b806395d89b41116100bd57806395d89b41146102ee578063a457c2d7146102f6578063a9059cbb1461030957600080fd5b806380f51c12146102805780638456cb59146102a35780638da5cb5b146102ab57600080fd5b806339509351116101455780635c975abb1161011f5780635c975abb1461023757806370a0823114610242578063715018a61461027857600080fd5b806339509351146102075780633f4ba83a1461021a57806352d5999f1461022457600080fd5b806318160ddd1161017657806318160ddd146101d357806323b872dd146101e5578063313ce567146101f857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103c1565b6040516101a791906120b5565b60405180910390f35b6101c36101be366004612128565b610453565b60405190151581526020016101a7565b6004545b6040519081526020016101a7565b6101c36101f3366004612154565b61046a565b604051601281526020016101a7565b6101c3610215366004612128565b610557565b6102226105a0565b005b610222610232366004612195565b610631565b60005460ff166101c3565b6101d7610250366004612195565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b610222610786565b6101c361028e366004612195565b60016020526000908152604090205460ff1681565b610222610817565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1660405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a7565b61019a610898565b6101c3610304366004612128565b6108a7565b6101c3610317366004612128565b61097f565b61022261032a3660046121fe565b61098c565b6101d761033d36600461226a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b6102226103833660046121fe565b610bbd565b6102226103963660046122a3565b610e9e565b6102226103a9366004612195565b611168565b6102226103bc36600461226a565b61129e565b6060600580546103d09061231d565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc9061231d565b80156104495780601f1061041e57610100808354040283529160200191610449565b820191906000526020600020905b81548152906001019060200180831161042c57829003601f168201915b5050505050905090565b6000610460338484611454565b5060015b92915050565b6000610477848484611608565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602090815260408083203384529091529020548281101561053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61054a8533858403611454565b60019150505b9392505050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161046091859061059b90869061239f565b611454565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b61062f6118c7565b565b60005473ffffffffffffffffffffffffffffffffffffffff6101009091041633146106b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114610712576040519150601f19603f3d011682016040523d82523d6000602084013e610717565b606091505b5050905080610782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f526563697069656e74206d6179206861766520726576657274656400000000006044820152606401610534565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff61010090910416331461080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b61062f60006113d7565b3360009081526001602052604090205460ff16610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f466f7262696464656e00000000000000000000000000000000000000000000006044820152606401610534565b61062f6119a8565b6060600680546103d09061231d565b33600090815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610534565b6109753385858403611454565b5060019392505050565b6000610460338484611608565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610a13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60005460ff1615610a80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b82610ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f2072656365697665720000000000000000000000000000000000000000006044820152606401610534565b828114610b50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f496e76616c6964206172677300000000000000000000000000000000000000006044820152606401610534565b60005b83811015610bb657610ba3858583818110610b7057610b706123b2565b9050602002016020810190610b859190612195565b848484818110610b9757610b976123b2565b9050602002013561097f565b5080610bae816123e1565b915050610b53565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610c44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60005460ff1615610cb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b82610d18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f2070617573657220737065636966696564000000000000000000000000006044820152606401610534565b828114610d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f496e76616c6964206172677300000000000000000000000000000000000000006044820152606401610534565b60005b83811015610e4357828282818110610d9e57610d9e6123b2565b9050602002016020810190610db39190612427565b60016000878785818110610dc957610dc96123b2565b9050602002016020810190610dde9190612195565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610e3b816123e1565b915050610d84565b503373ffffffffffffffffffffffffffffffffffffffff167f24a3b44a5628af91bc4b42f861f2e61c7b4b91534dca48702f6aa51a3534993885858585604051610e909493929190612444565b60405180910390a250505050565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610f25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60005460ff1615610f92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b82610ff9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f2072656365697665720000000000000000000000000000000000000000006044820152606401610534565b828114611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f496e76616c6964206172677300000000000000000000000000000000000000006044820152606401610534565b61106c8282611a68565b6007600082825461107d919061239f565b90915550506007546b033b2e3c9fd0803ce800000010156110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f43617020657863656564656400000000000000000000000000000000000000006044820152606401610534565b60005b838110156111605761114e8686868481811061111b5761111b6123b2565b90506020020160208101906111309190612195565b858585818110611142576111426123b2565b90506020020135611ab3565b80611158816123e1565b9150506110fd565b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff6101009091041633146111ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b73ffffffffffffffffffffffffffffffffffffffff8116611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610534565b61129b816113d7565b50565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015261078290829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015611395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b991906124e1565b73ffffffffffffffffffffffffffffffffffffffff85169190611b70565b6000805473ffffffffffffffffffffffffffffffffffffffff8381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b73ffffffffffffffffffffffffffffffffffffffff83166114f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff8216611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166116ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff821661174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610534565b611759838383611c02565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600260205260409020548181101561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526002602052604080822085850390559185168152908120805484929061185390849061239f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118b991815260200190565b60405180910390a350505050565b60005460ff16611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610534565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60005460ff1615611a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861197e3390565b6000805b82811015611aac57838382818110611a8657611a866123b2565b9050602002013582611a98919061239f565b915080611aa4816123e1565b915050611a6c565b5092915050565b60008111611b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e740000000000000000000000000000000000006044820152606401610534565b611b278282611c6f565b8173ffffffffffffffffffffffffffffffffffffffff16837f1a49076e0e8c733171c5360d78c9ae8e19fef5a0720b926e72f78b7cc37618cd836040516115fb91815260200190565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611bfd908490611d9b565b505050565b60005460ff1615611bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b73ffffffffffffffffffffffffffffffffffffffff8216611cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610534565b611cf860008383611c02565b8060046000828254611d0a919061239f565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526002602052604081208054839290611d4490849061239f565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611dfd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611ea79092919063ffffffff16565b805190915015611bfd5780806020019051810190611e1b91906124fa565b611bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610534565b6060611eb68484600085611ebe565b949350505050565b606082471015611f50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610534565b843b611fb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610534565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611fe19190612517565b60006040518083038185875af1925050503d806000811461201e576040519150601f19603f3d011682016040523d82523d6000602084013e612023565b606091505b509150915061203382828661203e565b979650505050505050565b6060831561204d575081610550565b82511561205d5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053491906120b5565b60005b838110156120ac578181015183820152602001612094565b50506000910152565b60208152600082518060208401526120d4816040850160208701612091565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461129b57600080fd5b6000806040838503121561213b57600080fd5b823561214681612106565b946020939093013593505050565b60008060006060848603121561216957600080fd5b833561217481612106565b9250602084013561218481612106565b929592945050506040919091013590565b6000602082840312156121a757600080fd5b813561055081612106565b60008083601f8401126121c457600080fd5b50813567ffffffffffffffff8111156121dc57600080fd5b6020830191508360208260051b85010111156121f757600080fd5b9250929050565b6000806000806040858703121561221457600080fd5b843567ffffffffffffffff8082111561222c57600080fd5b612238888389016121b2565b9096509450602087013591508082111561225157600080fd5b5061225e878288016121b2565b95989497509550505050565b6000806040838503121561227d57600080fd5b823561228881612106565b9150602083013561229881612106565b809150509250929050565b6000806000806000606086880312156122bb57600080fd5b85359450602086013567ffffffffffffffff808211156122da57600080fd5b6122e689838a016121b2565b909650945060408801359150808211156122ff57600080fd5b5061230c888289016121b2565b969995985093965092949392505050565b600181811c9082168061233157607f821691505b60208210810361236a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561046457610464612370565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361241257612412612370565b5060010190565b801515811461129b57600080fd5b60006020828403121561243957600080fd5b813561055081612419565b6040808252810184905260008560608301825b8781101561249457823561246a81612106565b73ffffffffffffffffffffffffffffffffffffffff16825260209283019290910190600101612457565b5083810360208581019190915285825291508590820160005b868110156124d45782356124c081612419565b1515825291830191908301906001016124ad565b5098975050505050505050565b6000602082840312156124f357600080fd5b5051919050565b60006020828403121561250c57600080fd5b815161055081612419565b60008251612529818460208701612091565b919091019291505056fea2646970667358221220619b71f55920cf85c85030865141e422a00c6b2f5e0f4fecd542b6fea970c1fc64736f6c63430008110033000000000000000000000000ac6cd41f7e434dcf2da45bb3ff385706dc2a2b9c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000e4e657074756e65204d757475616c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e504d0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c806380f51c12116100e3578063b7fc66121161008c578063eec4ff1611610066578063eec4ff1614610388578063f2fde38b1461039b578063feaea586146103ae57600080fd5b8063b7fc66121461031c578063dd62ed3e1461032f578063e9874f511461037557600080fd5b806395d89b41116100bd57806395d89b41146102ee578063a457c2d7146102f6578063a9059cbb1461030957600080fd5b806380f51c12146102805780638456cb59146102a35780638da5cb5b146102ab57600080fd5b806339509351116101455780635c975abb1161011f5780635c975abb1461023757806370a0823114610242578063715018a61461027857600080fd5b806339509351146102075780633f4ba83a1461021a57806352d5999f1461022457600080fd5b806318160ddd1161017657806318160ddd146101d357806323b872dd146101e5578063313ce567146101f857600080fd5b806306fdde0314610192578063095ea7b3146101b0575b600080fd5b61019a6103c1565b6040516101a791906120b5565b60405180910390f35b6101c36101be366004612128565b610453565b60405190151581526020016101a7565b6004545b6040519081526020016101a7565b6101c36101f3366004612154565b61046a565b604051601281526020016101a7565b6101c3610215366004612128565b610557565b6102226105a0565b005b610222610232366004612195565b610631565b60005460ff166101c3565b6101d7610250366004612195565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b610222610786565b6101c361028e366004612195565b60016020526000908152604090205460ff1681565b610222610817565b600054610100900473ffffffffffffffffffffffffffffffffffffffff1660405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101a7565b61019a610898565b6101c3610304366004612128565b6108a7565b6101c3610317366004612128565b61097f565b61022261032a3660046121fe565b61098c565b6101d761033d36600461226a565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b6102226103833660046121fe565b610bbd565b6102226103963660046122a3565b610e9e565b6102226103a9366004612195565b611168565b6102226103bc36600461226a565b61129e565b6060600580546103d09061231d565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc9061231d565b80156104495780601f1061041e57610100808354040283529160200191610449565b820191906000526020600020905b81548152906001019060200180831161042c57829003601f168201915b5050505050905090565b6000610460338484611454565b5060015b92915050565b6000610477848484611608565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602090815260408083203384529091529020548281101561053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61054a8533858403611454565b60019150505b9392505050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161046091859061059b90869061239f565b611454565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b61062f6118c7565b565b60005473ffffffffffffffffffffffffffffffffffffffff6101009091041633146106b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114610712576040519150601f19603f3d011682016040523d82523d6000602084013e610717565b606091505b5050905080610782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f526563697069656e74206d6179206861766520726576657274656400000000006044820152606401610534565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff61010090910416331461080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b61062f60006113d7565b3360009081526001602052604090205460ff16610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f466f7262696464656e00000000000000000000000000000000000000000000006044820152606401610534565b61062f6119a8565b6060600680546103d09061231d565b33600090815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610534565b6109753385858403611454565b5060019392505050565b6000610460338484611608565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610a13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60005460ff1615610a80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b82610ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f2072656365697665720000000000000000000000000000000000000000006044820152606401610534565b828114610b50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f496e76616c6964206172677300000000000000000000000000000000000000006044820152606401610534565b60005b83811015610bb657610ba3858583818110610b7057610b706123b2565b9050602002016020810190610b859190612195565b848484818110610b9757610b976123b2565b9050602002013561097f565b5080610bae816123e1565b915050610b53565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610c44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60005460ff1615610cb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b82610d18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f2070617573657220737065636966696564000000000000000000000000006044820152606401610534565b828114610d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f496e76616c6964206172677300000000000000000000000000000000000000006044820152606401610534565b60005b83811015610e4357828282818110610d9e57610d9e6123b2565b9050602002016020810190610db39190612427565b60016000878785818110610dc957610dc96123b2565b9050602002016020810190610dde9190612195565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610e3b816123e1565b915050610d84565b503373ffffffffffffffffffffffffffffffffffffffff167f24a3b44a5628af91bc4b42f861f2e61c7b4b91534dca48702f6aa51a3534993885858585604051610e909493929190612444565b60405180910390a250505050565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314610f25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b60005460ff1615610f92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b82610ff9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4e6f2072656365697665720000000000000000000000000000000000000000006044820152606401610534565b828114611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f496e76616c6964206172677300000000000000000000000000000000000000006044820152606401610534565b61106c8282611a68565b6007600082825461107d919061239f565b90915550506007546b033b2e3c9fd0803ce800000010156110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f43617020657863656564656400000000000000000000000000000000000000006044820152606401610534565b60005b838110156111605761114e8686868481811061111b5761111b6123b2565b90506020020160208101906111309190612195565b858585818110611142576111426123b2565b90506020020135611ab3565b80611158816123e1565b9150506110fd565b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff6101009091041633146111ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b73ffffffffffffffffffffffffffffffffffffffff8116611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610534565b61129b816113d7565b50565b60005473ffffffffffffffffffffffffffffffffffffffff610100909104163314611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015261078290829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015611395573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b991906124e1565b73ffffffffffffffffffffffffffffffffffffffff85169190611b70565b6000805473ffffffffffffffffffffffffffffffffffffffff8381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b73ffffffffffffffffffffffffffffffffffffffff83166114f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff8216611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166116ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff821661174e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610534565b611759838383611c02565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600260205260409020548181101561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610534565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526002602052604080822085850390559185168152908120805484929061185390849061239f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118b991815260200190565b60405180910390a350505050565b60005460ff16611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610534565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60005460ff1615611a15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861197e3390565b6000805b82811015611aac57838382818110611a8657611a866123b2565b9050602002013582611a98919061239f565b915080611aa4816123e1565b915050611a6c565b5092915050565b60008111611b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e740000000000000000000000000000000000006044820152606401610534565b611b278282611c6f565b8173ffffffffffffffffffffffffffffffffffffffff16837f1a49076e0e8c733171c5360d78c9ae8e19fef5a0720b926e72f78b7cc37618cd836040516115fb91815260200190565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611bfd908490611d9b565b505050565b60005460ff1615611bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610534565b73ffffffffffffffffffffffffffffffffffffffff8216611cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610534565b611cf860008383611c02565b8060046000828254611d0a919061239f565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526002602052604081208054839290611d4490849061239f565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611dfd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611ea79092919063ffffffff16565b805190915015611bfd5780806020019051810190611e1b91906124fa565b611bfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610534565b6060611eb68484600085611ebe565b949350505050565b606082471015611f50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610534565b843b611fb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610534565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611fe19190612517565b60006040518083038185875af1925050503d806000811461201e576040519150601f19603f3d011682016040523d82523d6000602084013e612023565b606091505b509150915061203382828661203e565b979650505050505050565b6060831561204d575081610550565b82511561205d5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053491906120b5565b60005b838110156120ac578181015183820152602001612094565b50506000910152565b60208152600082518060208401526120d4816040850160208701612091565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461129b57600080fd5b6000806040838503121561213b57600080fd5b823561214681612106565b946020939093013593505050565b60008060006060848603121561216957600080fd5b833561217481612106565b9250602084013561218481612106565b929592945050506040919091013590565b6000602082840312156121a757600080fd5b813561055081612106565b60008083601f8401126121c457600080fd5b50813567ffffffffffffffff8111156121dc57600080fd5b6020830191508360208260051b85010111156121f757600080fd5b9250929050565b6000806000806040858703121561221457600080fd5b843567ffffffffffffffff8082111561222c57600080fd5b612238888389016121b2565b9096509450602087013591508082111561225157600080fd5b5061225e878288016121b2565b95989497509550505050565b6000806040838503121561227d57600080fd5b823561228881612106565b9150602083013561229881612106565b809150509250929050565b6000806000806000606086880312156122bb57600080fd5b85359450602086013567ffffffffffffffff808211156122da57600080fd5b6122e689838a016121b2565b909650945060408801359150808211156122ff57600080fd5b5061230c888289016121b2565b969995985093965092949392505050565b600181811c9082168061233157607f821691505b60208210810361236a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561046457610464612370565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361241257612412612370565b5060010190565b801515811461129b57600080fd5b60006020828403121561243957600080fd5b813561055081612419565b6040808252810184905260008560608301825b8781101561249457823561246a81612106565b73ffffffffffffffffffffffffffffffffffffffff16825260209283019290910190600101612457565b5083810360208581019190915285825291508590820160005b868110156124d45782356124c081612419565b1515825291830191908301906001016124ad565b5098975050505050505050565b6000602082840312156124f357600080fd5b5051919050565b60006020828403121561250c57600080fd5b815161055081612419565b60008251612529818460208701612091565b919091019291505056fea2646970667358221220619b71f55920cf85c85030865141e422a00c6b2f5e0f4fecd542b6fea970c1fc64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ac6cd41f7e434dcf2da45bb3ff385706dc2a2b9c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000e4e657074756e65204d757475616c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e504d0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : timelockOrOwner (address): 0xAc6CD41F7E434DCf2Da45bb3ff385706DC2A2b9C
Arg [1] : tokenName (string): Neptune Mutual
Arg [2] : tokenSymbol (string): NPM
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000ac6cd41f7e434dcf2da45bb3ff385706dc2a2b9c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4e657074756e65204d757475616c000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4e504d0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.