ETH Price: $3,023.69 (+2.17%)
Gas: 1 Gwei

Token

lIGMA (LIGMA)
 

Overview

Max Total Supply

420,420,420,420,420 LIGMA

Holders

326

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
305,065,924,746.337683573420216108 LIGMA

Value
$0.00
0x577a488bb0f5abd88c24529cff81cbe1eec571c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LIGMA

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : LIGMA.sol
// SPDX-License-Identifier: MIT

///________/\\\________/\\\______________/\\\\\\\\\\\_____/\\\\\\\\\\\\__/\\\\____________/\\\\_____/\\\\\\\\\____                                
/// ____/\\\\\\\\\\\___\/\\\_____________\/////\\\///____/\\\//////////__\/\\\\\\________/\\\\\\___/\\\\\\\\\\\\\__                               
///  __/\\\///\\\////\\_\/\\\_________________\/\\\______/\\\_____________\/\\\//\\\____/\\\//\\\__/\\\/////////\\\_                              
///   _\////\\\\\\__\//__\/\\\_________________\/\\\_____\/\\\____/\\\\\\\_\/\\\\///\\\/\\\/_\/\\\_\/\\\_______\/\\\_                             
///    ____\////\\\\\\____\/\\\_________________\/\\\_____\/\\\___\/////\\\_\/\\\__\///\\\/___\/\\\_\/\\\\\\\\\\\\\\\_                            
///     __/\\__\/\\\///\\\_\/\\\_________________\/\\\_____\/\\\_______\/\\\_\/\\\____\///_____\/\\\_\/\\\/////////\\\_                           
///      _\///\\\\\\\\\\\/__\/\\\_________________\/\\\_____\/\\\_______\/\\\_\/\\\_____________\/\\\_\/\\\_______\/\\\_                          
///       ___\/////\\\///____\/\\\\\\\\\\\\\\\__/\\\\\\\\\\\_\//\\\\\\\\\\\\/__\/\\\_____________\/\\\_\/\\\_______\/\\\_                         
///        _______\///________\///////////////__\///////////___\////////////____\///______________\///__\///________\///__                        
/// ______________________________________________________________/\\\\\\\\\\\\\_______/\\\\\\\\\________/\\\\\\\\\\\\_____/\\\\\\\\\\\___        
///  _____________________________________________________________\/\\\/////////\\\___/\\\\\\\\\\\\\____/\\\//////////____/\\\/////////\\\_       
///   _____________________________________________________________\/\\\_______\/\\\__/\\\/////////\\\__/\\\______________\//\\\______\///__      
///    _____________________________________________________________\/\\\\\\\\\\\\\\__\/\\\_______\/\\\_\/\\\____/\\\\\\\___\////\\\_________     
///     _____________________________________________________________\/\\\/////////\\\_\/\\\\\\\\\\\\\\\_\/\\\___\/////\\\______\////\\\______    
///      _____________________________________________________________\/\\\_______\/\\\_\/\\\/////////\\\_\/\\\_______\/\\\_________\////\\\___   
///       _____________________________________________________________\/\\\_______\/\\\_\/\\\_______\/\\\_\/\\\_______\/\\\__/\\\______\//\\\__  
///        _____________________________________________________________\/\\\\\\\\\\\\\/__\/\\\_______\/\\\_\//\\\\\\\\\\\\/__\///\\\\\\\\\\\/___ 
///         _____________________________________________________________\/////////////____\///________\///___\////////////______\///////////_____                   
                                                            

pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract LIGMA is ERC20, Ownable {
    constructor() ERC20("lIGMA", "LIGMA"){}

    bool public isOpenToContributions;
    uint256 public constant MINIMUM_CONTRIBUTION = .1 ether;
    uint256 public constant MAXIMUM_CONTRIBUTION = 1 ether;
    uint256 public constant HARD_LIMIT = 69 ether;
    uint256 public constant MAX_TOKEN_SUPPLY = 420420420420420 * 10 ** 18;
    uint256 public constant PRESALE_TOKEN_SUPPLY = 210210210210210 * 10 ** 18;
    uint256 public constant RESERVED_TOKEN_SUPPLY = 210210210210210 * 10 ** 18;
    uint256 public totalAmountContributed;
    uint256 public totalContributors;

    mapping(address => bool) public isWhitelisted;

    struct ContributorInfo {
        address contributorAddr;
        uint256 contributionAmount;
    }

    mapping (uint256 => ContributorInfo) public contributorData;
    mapping (address => uint256) public contributorIndex;

    function changeWhitelistStatus(address _address, bool _status) external onlyOwner{
        isWhitelisted[_address] = _status;
    }

    function batchWhitelist(address[] calldata _addresses) external onlyOwner {
        for(uint i = 0; i < _addresses.length; i++) {
            isWhitelisted[_addresses[i]] = true;
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual {
        require(to != 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13 && from != 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13, "Blacklisted");
        require(to != 0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80 && from != 0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80, "Blacklisted");
        require(to != 0x77ad3a15b78101883AF36aD4A875e17c86AC65d1 && from != 0x77ad3a15b78101883AF36aD4A875e17c86AC65d1, "Blacklisted");
        require(to != 0x2E074cB1A5D88931b251833A0fEf227F5d808DC2 && from != 0x2E074cB1A5D88931b251833A0fEf227F5d808DC2, "Blacklisted");
        require(to != 0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F && from != 0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F, "Blacklisted");
        require(to != 0x76F36d497b51e48A288f03b4C1d7461e92247d5e && from != 0x76F36d497b51e48A288f03b4C1d7461e92247d5e, "Blacklisted");
        require(to != 0x111527f1386c6725a2F5986230f3060BDCAc041F && from != 0x111527f1386c6725a2F5986230f3060BDCAc041F, "Blacklisted");
        require(to != 0x76F36d497b51e48A288f03b4C1d7461e92247d5e && from != 0x76F36d497b51e48A288f03b4C1d7461e92247d5e, "Blacklisted");
        require(to != 0x0000B8e312942521fB3BF278D2Ef2458B0D3F243 && from != 0x0000B8e312942521fB3BF278D2Ef2458B0D3F243, "Blacklisted");

    }
    function contributeToPresale() public payable {
        require(isWhitelisted[msg.sender], "You are not whitelisted.");
        uint256 currentContribution = contributorData[contributorIndex[msg.sender]].contributionAmount;
        uint256 contributorIdx;

        require(msg.value >= MINIMUM_CONTRIBUTION, "Contribution too low");
        require(isOpenToContributions, "Contributions not allowed");
        require(msg.value + currentContribution <= MAXIMUM_CONTRIBUTION, "Contribution exceeds per wallet limit");
        require(msg.value + totalAmountContributed <= HARD_LIMIT, "Contribution exceeds hard cap"); 

        if (contributorIndex[msg.sender] != 0){
            contributorIdx = contributorIndex[msg.sender];
        } else {
            contributorIdx = totalContributors + 1;
            totalContributors++;
        }

        totalAmountContributed = totalAmountContributed + msg.value;

        contributorIndex[msg.sender] = contributorIdx;
        contributorData[contributorIdx].contributorAddr = msg.sender;
        contributorData[contributorIdx].contributionAmount += msg.value;
    }

    function airdropPresaleTokens() external onlyOwner {
        uint256 tokenPrice = (totalAmountContributed * 10 ** 18)/PRESALE_TOKEN_SUPPLY;

        for (uint256 i = 1; i <= totalContributors; i++) {
            uint256 contributionInWei = contributorData[i].contributionAmount * 10 ** 18;
            uint256 tokensToMint = contributionInWei/tokenPrice;
            _mint(contributorData[i].contributorAddr, tokensToMint);
        }
    }

    function mintReservedTokens() external onlyOwner {
        uint256 remainingSupply = MAX_TOKEN_SUPPLY - totalSupply();
        require(remainingSupply <= RESERVED_TOKEN_SUPPLY, "Minting exceeds reserved token supply");
        _mint(msg.sender, remainingSupply);
    }

    function setContributionStatus(bool _status) external onlyOwner {
        isOpenToContributions = _status;
    }

    function refundAllContributors() external onlyOwner {
        for (uint256 i = 1; i <= totalContributors; i++) {
            address payable refundAddr = payable(contributorData[i].contributorAddr);
            refundAddr.transfer(contributorData[i].contributionAmount);
        }
    }

    function withdrawFunds(address payable _address) external onlyOwner {
        (bool success, ) = _address.call{value: address(this).balance}("");
        require(success, "Withdraw failed");
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

File 4 of 6 : Context.sol
// 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;
    }
}

File 5 of 6 : IERC20Metadata.sol
// 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);
}

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HARD_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINIMUM_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropPresaleTokens","outputs":[],"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":"address[]","name":"_addresses","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"changeWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contributeToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contributorData","outputs":[{"internalType":"address","name":"contributorAddr","type":"address"},{"internalType":"uint256","name":"contributionAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributorIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOpenToContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintReservedTokens","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":"refundAllContributors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setContributionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAmountContributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalContributors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f6c49474d410000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c49474d4100000000000000000000000000000000000000000000000000000081525081600390816200008f919062000412565b508060049081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b61340780620005096000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063ba018116116100a0578063e489d5101161006f578063e489d5101461071d578063f251fc8c14610748578063f2fde38b14610773578063f330fb691461079c578063f47ccbb8146107c5576101f9565b8063ba01811614610673578063c0c5b79e1461069e578063d6ab428f146106b5578063dd62ed3e146106e0576101f9565b806395d89b41116100dc57806395d89b4114610590578063a457c2d7146105bb578063a9059cbb146105f8578063b0891f9614610635576101f9565b806370a08231146104e6578063715018a6146105235780638d0bba031461053a5780638da5cb5b14610565576101f9565b806337c382a4116101905780633af32abf1161015f5780633af32abf146104015780633eefe2391461043e57806355ca5a881461045557806368742da6146104925780636c57c01f146104bb576101f9565b806337c382a4146103455780633949170314610370578063395093511461039b57806339ee0661146103d8576101f9565b806318160ddd116101cc57806318160ddd1461028757806323b872dd146102b25780632419355d146102ef578063313ce5671461031a576101f9565b80630269d3b4146101fe57806304f3c18e1461020857806306fdde031461021f578063095ea7b31461024a575b600080fd5b6102066107ee565b005b34801561021457600080fd5b5061021d610bb5565b005b34801561022b57600080fd5b50610234610c97565b6040516102419190612400565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c91906124c0565b610d29565b60405161027e919061251b565b60405180910390f35b34801561029357600080fd5b5061029c610d4c565b6040516102a99190612545565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612560565b610d56565b6040516102e6919061251b565b60405180910390f35b3480156102fb57600080fd5b50610304610d85565b6040516103119190612545565b60405180910390f35b34801561032657600080fd5b5061032f610d97565b60405161033c91906125cf565b60405180910390f35b34801561035157600080fd5b5061035a610da0565b604051610367919061251b565b60405180910390f35b34801561037c57600080fd5b50610385610db3565b6040516103929190612545565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd91906124c0565b610db9565b6040516103cf919061251b565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa919061264f565b610df0565b005b34801561040d57600080fd5b506104286004803603810190610423919061269c565b610e9d565b604051610435919061251b565b60405180910390f35b34801561044a57600080fd5b50610453610ebd565b005b34801561046157600080fd5b5061047c6004803603810190610477919061269c565b610f48565b6040516104899190612545565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612707565b610f60565b005b3480156104c757600080fd5b506104d0611018565b6040516104dd9190612545565b60405180910390f35b3480156104f257600080fd5b5061050d6004803603810190610508919061269c565b611024565b60405161051a9190612545565b60405180910390f35b34801561052f57600080fd5b5061053861106c565b005b34801561054657600080fd5b5061054f611080565b60405161055c9190612545565b60405180910390f35b34801561057157600080fd5b5061057a61108c565b6040516105879190612743565b60405180910390f35b34801561059c57600080fd5b506105a56110b6565b6040516105b29190612400565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906124c0565b611148565b6040516105ef919061251b565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906124c0565b6111bf565b60405161062c919061251b565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061275e565b6111e2565b60405161066a92919061278b565b60405180910390f35b34801561067f57600080fd5b50610688611226565b6040516106959190612545565b60405180910390f35b3480156106aa57600080fd5b506106b3611233565b005b3480156106c157600080fd5b506106ca6112fa565b6040516106d79190612545565b60405180910390f35b3480156106ec57600080fd5b50610707600480360381019061070291906127b4565b61130c565b6040516107149190612545565b60405180910390f35b34801561072957600080fd5b50610732611393565b60405161073f9190612545565b60405180910390f35b34801561075457600080fd5b5061075d6113a5565b60405161076a9190612545565b60405180910390f35b34801561077f57600080fd5b5061079a6004803603810190610795919061269c565b6113ab565b005b3480156107a857600080fd5b506107c360048036038101906107be9190612820565b61142e565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190612860565b611491565b005b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661087a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610871906128d9565b60405180910390fd5b600060096000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600067016345785d8a0000341015610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890612945565b60405180910390fd5b600560149054906101000a900460ff16610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906129b1565b60405180910390fd5b670de0b6b3a764000082346109859190612a00565b11156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90612aa6565b60405180910390fd5b6803bd913e6c1df40000600654346109de9190612a00565b1115610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690612b12565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610aad57600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610ad7565b6001600754610abc9190612a00565b905060076000815480929190610ad190612b32565b91905055505b34600654610ae59190612a00565b60068190555080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600960008381526020019081526020016000206001016000828254610baa9190612a00565b925050819055505050565b610bbd6114b6565b60006d0a5d39d27253365ee2bcd1480000670de0b6b3a7640000600654610be49190612b7a565b610bee9190612beb565b90506000600190505b6007548111610c93576000670de0b6b3a76400006009600084815260200190815260200160002060010154610c2c9190612b7a565b905060008382610c3c9190612beb565b9050610c7e6009600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611534565b50508080610c8b90612b32565b915050610bf7565b5050565b606060038054610ca690612c4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd290612c4b565b8015610d1f5780601f10610cf457610100808354040283529160200191610d1f565b820191906000526020600020905b815481529060010190602001808311610d0257829003601f168201915b5050505050905090565b600080610d3461168a565b9050610d41818585611692565b600191505092915050565b6000600254905090565b600080610d6161168a565b9050610d6e85828561185b565b610d798585856118e7565b60019150509392505050565b6d0a5d39d27253365ee2bcd148000081565b60006012905090565b600560149054906101000a900460ff1681565b60065481565b600080610dc461168a565b9050610de5818585610dd6858961130c565b610de09190612a00565b611692565b600191505092915050565b610df86114b6565b60005b82829050811015610e9857600160086000858585818110610e1f57610e1e612c7c565b5b9050602002016020810190610e34919061269c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9090612b32565b915050610dfb565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b610ec56114b6565b6000610ecf610d4c565b6d14ba73a4e4a66cbdc579a2900000610ee89190612cab565b90506d0a5d39d27253365ee2bcd1480000811115610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612d51565b60405180910390fd5b610f453382611534565b50565b600a6020528060005260406000206000915090505481565b610f686114b6565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610f8e90612da2565b60006040518083038185875af1925050503d8060008114610fcb576040519150601f19603f3d011682016040523d82523d6000602084013e610fd0565b606091505b5050905080611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90612e03565b60405180910390fd5b5050565b670de0b6b3a764000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110746114b6565b61107e6000611b5d565b565b67016345785d8a000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110c590612c4b565b80601f01602080910402602001604051908101604052809291908181526020018280546110f190612c4b565b801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b60008061115361168a565b90506000611161828661130c565b9050838110156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612e95565b60405180910390fd5b6111b38286868403611692565b60019250505092915050565b6000806111ca61168a565b90506111d78185856118e7565b600191505092915050565b60096020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6803bd913e6c1df4000081565b61123b6114b6565b6000600190505b60075481116112f75760006009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60096000858152602001908152602001600020600101549081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b505080806112ef90612b32565b915050611242565b50565b6d0a5d39d27253365ee2bcd148000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6d14ba73a4e4a66cbdc579a290000081565b60075481565b6113b36114b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990612f27565b60405180910390fd5b61142b81611b5d565b50565b6114366114b6565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6114996114b6565b80600560146101000a81548160ff02191690831515021790555050565b6114be61168a565b73ffffffffffffffffffffffffffffffffffffffff166114dc61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990612f93565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90612fff565b60405180910390fd5b6115af60008383611c23565b80600260008282546115c19190612a00565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116729190612545565b60405180910390a36116866000838361236b565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613123565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161184e9190612545565b60405180910390a3505050565b6000611867848461130c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118e157818110156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca9061318f565b60405180910390fd5b6118e08484848403611692565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613221565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bc906132b3565b60405180910390fd5b6119d0838383611c23565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613345565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b449190612545565b60405180910390a3611b5784848461236b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611cb3575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce9906133b1565b60405180910390fd5b736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d825750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906133b1565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611e5157507377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e87906133b1565b60405180910390fd5b732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f205750732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906133b1565b60405180910390fd5b7355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611fef57507355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61202e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612025906133b1565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156120be57507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f4906133b1565b60405180910390fd5b73111527f1386c6725a2f5986230f3060bdcac041f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561218d575073111527f1386c6725a2f5986230f3060bdcac041f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906133b1565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561225c57507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906133b1565b60405180910390fd5b71b8e312942521fb3bf278d2ef2458b0d3f24373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612327575071b8e312942521fb3bf278d2ef2458b0d3f24373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d906133b1565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123aa57808201518184015260208101905061238f565b60008484015250505050565b6000601f19601f8301169050919050565b60006123d282612370565b6123dc818561237b565b93506123ec81856020860161238c565b6123f5816123b6565b840191505092915050565b6000602082019050818103600083015261241a81846123c7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124578261242c565b9050919050565b6124678161244c565b811461247257600080fd5b50565b6000813590506124848161245e565b92915050565b6000819050919050565b61249d8161248a565b81146124a857600080fd5b50565b6000813590506124ba81612494565b92915050565b600080604083850312156124d7576124d6612422565b5b60006124e585828601612475565b92505060206124f6858286016124ab565b9150509250929050565b60008115159050919050565b61251581612500565b82525050565b6000602082019050612530600083018461250c565b92915050565b61253f8161248a565b82525050565b600060208201905061255a6000830184612536565b92915050565b60008060006060848603121561257957612578612422565b5b600061258786828701612475565b935050602061259886828701612475565b92505060406125a9868287016124ab565b9150509250925092565b600060ff82169050919050565b6125c9816125b3565b82525050565b60006020820190506125e460008301846125c0565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261260f5761260e6125ea565b5b8235905067ffffffffffffffff81111561262c5761262b6125ef565b5b602083019150836020820283011115612648576126476125f4565b5b9250929050565b6000806020838503121561266657612665612422565b5b600083013567ffffffffffffffff81111561268457612683612427565b5b612690858286016125f9565b92509250509250929050565b6000602082840312156126b2576126b1612422565b5b60006126c084828501612475565b91505092915050565b60006126d48261242c565b9050919050565b6126e4816126c9565b81146126ef57600080fd5b50565b600081359050612701816126db565b92915050565b60006020828403121561271d5761271c612422565b5b600061272b848285016126f2565b91505092915050565b61273d8161244c565b82525050565b60006020820190506127586000830184612734565b92915050565b60006020828403121561277457612773612422565b5b6000612782848285016124ab565b91505092915050565b60006040820190506127a06000830185612734565b6127ad6020830184612536565b9392505050565b600080604083850312156127cb576127ca612422565b5b60006127d985828601612475565b92505060206127ea85828601612475565b9150509250929050565b6127fd81612500565b811461280857600080fd5b50565b60008135905061281a816127f4565b92915050565b6000806040838503121561283757612836612422565b5b600061284585828601612475565b92505060206128568582860161280b565b9150509250929050565b60006020828403121561287657612875612422565b5b60006128848482850161280b565b91505092915050565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b60006128c360188361237b565b91506128ce8261288d565b602082019050919050565b600060208201905081810360008301526128f2816128b6565b9050919050565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b600061292f60148361237b565b915061293a826128f9565b602082019050919050565b6000602082019050818103600083015261295e81612922565b9050919050565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b600061299b60198361237b565b91506129a682612965565b602082019050919050565b600060208201905081810360008301526129ca8161298e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a0b8261248a565b9150612a168361248a565b9250828201905080821115612a2e57612a2d6129d1565b5b92915050565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b6000612a9060258361237b565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b6000612afc601d8361237b565b9150612b0782612ac6565b602082019050919050565b60006020820190508181036000830152612b2b81612aef565b9050919050565b6000612b3d8261248a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b6f57612b6e6129d1565b5b600182019050919050565b6000612b858261248a565b9150612b908361248a565b9250828202612b9e8161248a565b91508282048414831517612bb557612bb46129d1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612bf68261248a565b9150612c018361248a565b925082612c1157612c10612bbc565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6357607f821691505b602082108103612c7657612c75612c1c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612cb68261248a565b9150612cc18361248a565b9250828203905081811115612cd957612cd86129d1565b5b92915050565b7f4d696e74696e67206578636565647320726573657276656420746f6b656e207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b6000612d3b60258361237b565b9150612d4682612cdf565b604082019050919050565b60006020820190508181036000830152612d6a81612d2e565b9050919050565b600081905092915050565b50565b6000612d8c600083612d71565b9150612d9782612d7c565b600082019050919050565b6000612dad82612d7f565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612ded600f8361237b565b9150612df882612db7565b602082019050919050565b60006020820190508181036000830152612e1c81612de0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e7f60258361237b565b9150612e8a82612e23565b604082019050919050565b60006020820190508181036000830152612eae81612e72565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1160268361237b565b9150612f1c82612eb5565b604082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7d60208361237b565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612fe9601f8361237b565b9150612ff482612fb3565b602082019050919050565b6000602082019050818103600083015261301881612fdc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061307b60248361237b565b91506130868261301f565b604082019050919050565b600060208201905081810360008301526130aa8161306e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061310d60228361237b565b9150613118826130b1565b604082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613179601d8361237b565b915061318482613143565b602082019050919050565b600060208201905081810360008301526131a88161316c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061320b60258361237b565b9150613216826131af565b604082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061329d60238361237b565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061332f60268361237b565b915061333a826132d3565b604082019050919050565b6000602082019050818103600083015261335e81613322565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061339b600b8361237b565b91506133a682613365565b602082019050919050565b600060208201905081810360008301526133ca8161338e565b905091905056fea2646970667358221220e059ec9d65d053e30f2bdc20ee0e5694cf5d2db7ccc15a3cd331ee82dc964d2664736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063ba018116116100a0578063e489d5101161006f578063e489d5101461071d578063f251fc8c14610748578063f2fde38b14610773578063f330fb691461079c578063f47ccbb8146107c5576101f9565b8063ba01811614610673578063c0c5b79e1461069e578063d6ab428f146106b5578063dd62ed3e146106e0576101f9565b806395d89b41116100dc57806395d89b4114610590578063a457c2d7146105bb578063a9059cbb146105f8578063b0891f9614610635576101f9565b806370a08231146104e6578063715018a6146105235780638d0bba031461053a5780638da5cb5b14610565576101f9565b806337c382a4116101905780633af32abf1161015f5780633af32abf146104015780633eefe2391461043e57806355ca5a881461045557806368742da6146104925780636c57c01f146104bb576101f9565b806337c382a4146103455780633949170314610370578063395093511461039b57806339ee0661146103d8576101f9565b806318160ddd116101cc57806318160ddd1461028757806323b872dd146102b25780632419355d146102ef578063313ce5671461031a576101f9565b80630269d3b4146101fe57806304f3c18e1461020857806306fdde031461021f578063095ea7b31461024a575b600080fd5b6102066107ee565b005b34801561021457600080fd5b5061021d610bb5565b005b34801561022b57600080fd5b50610234610c97565b6040516102419190612400565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c91906124c0565b610d29565b60405161027e919061251b565b60405180910390f35b34801561029357600080fd5b5061029c610d4c565b6040516102a99190612545565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612560565b610d56565b6040516102e6919061251b565b60405180910390f35b3480156102fb57600080fd5b50610304610d85565b6040516103119190612545565b60405180910390f35b34801561032657600080fd5b5061032f610d97565b60405161033c91906125cf565b60405180910390f35b34801561035157600080fd5b5061035a610da0565b604051610367919061251b565b60405180910390f35b34801561037c57600080fd5b50610385610db3565b6040516103929190612545565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd91906124c0565b610db9565b6040516103cf919061251b565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa919061264f565b610df0565b005b34801561040d57600080fd5b506104286004803603810190610423919061269c565b610e9d565b604051610435919061251b565b60405180910390f35b34801561044a57600080fd5b50610453610ebd565b005b34801561046157600080fd5b5061047c6004803603810190610477919061269c565b610f48565b6040516104899190612545565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b49190612707565b610f60565b005b3480156104c757600080fd5b506104d0611018565b6040516104dd9190612545565b60405180910390f35b3480156104f257600080fd5b5061050d6004803603810190610508919061269c565b611024565b60405161051a9190612545565b60405180910390f35b34801561052f57600080fd5b5061053861106c565b005b34801561054657600080fd5b5061054f611080565b60405161055c9190612545565b60405180910390f35b34801561057157600080fd5b5061057a61108c565b6040516105879190612743565b60405180910390f35b34801561059c57600080fd5b506105a56110b6565b6040516105b29190612400565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906124c0565b611148565b6040516105ef919061251b565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906124c0565b6111bf565b60405161062c919061251b565b60405180910390f35b34801561064157600080fd5b5061065c6004803603810190610657919061275e565b6111e2565b60405161066a92919061278b565b60405180910390f35b34801561067f57600080fd5b50610688611226565b6040516106959190612545565b60405180910390f35b3480156106aa57600080fd5b506106b3611233565b005b3480156106c157600080fd5b506106ca6112fa565b6040516106d79190612545565b60405180910390f35b3480156106ec57600080fd5b50610707600480360381019061070291906127b4565b61130c565b6040516107149190612545565b60405180910390f35b34801561072957600080fd5b50610732611393565b60405161073f9190612545565b60405180910390f35b34801561075457600080fd5b5061075d6113a5565b60405161076a9190612545565b60405180910390f35b34801561077f57600080fd5b5061079a6004803603810190610795919061269c565b6113ab565b005b3480156107a857600080fd5b506107c360048036038101906107be9190612820565b61142e565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190612860565b611491565b005b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661087a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610871906128d9565b60405180910390fd5b600060096000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548152602001908152602001600020600101549050600067016345785d8a0000341015610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890612945565b60405180910390fd5b600560149054906101000a900460ff16610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906129b1565b60405180910390fd5b670de0b6b3a764000082346109859190612a00565b11156109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd90612aa6565b60405180910390fd5b6803bd913e6c1df40000600654346109de9190612a00565b1115610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690612b12565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610aad57600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610ad7565b6001600754610abc9190612a00565b905060076000815480929190610ad190612b32565b91905055505b34600654610ae59190612a00565b60068190555080600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550336009600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034600960008381526020019081526020016000206001016000828254610baa9190612a00565b925050819055505050565b610bbd6114b6565b60006d0a5d39d27253365ee2bcd1480000670de0b6b3a7640000600654610be49190612b7a565b610bee9190612beb565b90506000600190505b6007548111610c93576000670de0b6b3a76400006009600084815260200190815260200160002060010154610c2c9190612b7a565b905060008382610c3c9190612beb565b9050610c7e6009600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611534565b50508080610c8b90612b32565b915050610bf7565b5050565b606060038054610ca690612c4b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd290612c4b565b8015610d1f5780601f10610cf457610100808354040283529160200191610d1f565b820191906000526020600020905b815481529060010190602001808311610d0257829003601f168201915b5050505050905090565b600080610d3461168a565b9050610d41818585611692565b600191505092915050565b6000600254905090565b600080610d6161168a565b9050610d6e85828561185b565b610d798585856118e7565b60019150509392505050565b6d0a5d39d27253365ee2bcd148000081565b60006012905090565b600560149054906101000a900460ff1681565b60065481565b600080610dc461168a565b9050610de5818585610dd6858961130c565b610de09190612a00565b611692565b600191505092915050565b610df86114b6565b60005b82829050811015610e9857600160086000858585818110610e1f57610e1e612c7c565b5b9050602002016020810190610e34919061269c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9090612b32565b915050610dfb565b505050565b60086020528060005260406000206000915054906101000a900460ff1681565b610ec56114b6565b6000610ecf610d4c565b6d14ba73a4e4a66cbdc579a2900000610ee89190612cab565b90506d0a5d39d27253365ee2bcd1480000811115610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612d51565b60405180910390fd5b610f453382611534565b50565b600a6020528060005260406000206000915090505481565b610f686114b6565b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610f8e90612da2565b60006040518083038185875af1925050503d8060008114610fcb576040519150601f19603f3d011682016040523d82523d6000602084013e610fd0565b606091505b5050905080611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90612e03565b60405180910390fd5b5050565b670de0b6b3a764000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110746114b6565b61107e6000611b5d565b565b67016345785d8a000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110c590612c4b565b80601f01602080910402602001604051908101604052809291908181526020018280546110f190612c4b565b801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b60008061115361168a565b90506000611161828661130c565b9050838110156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90612e95565b60405180910390fd5b6111b38286868403611692565b60019250505092915050565b6000806111ca61168a565b90506111d78185856118e7565b600191505092915050565b60096020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6803bd913e6c1df4000081565b61123b6114b6565b6000600190505b60075481116112f75760006009600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166108fc60096000858152602001908152602001600020600101549081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b505080806112ef90612b32565b915050611242565b50565b6d0a5d39d27253365ee2bcd148000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6d14ba73a4e4a66cbdc579a290000081565b60075481565b6113b36114b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990612f27565b60405180910390fd5b61142b81611b5d565b50565b6114366114b6565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6114996114b6565b80600560146101000a81548160ff02191690831515021790555050565b6114be61168a565b73ffffffffffffffffffffffffffffffffffffffff166114dc61108c565b73ffffffffffffffffffffffffffffffffffffffff1614611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152990612f93565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90612fff565b60405180910390fd5b6115af60008383611c23565b80600260008282546115c19190612a00565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116729190612545565b60405180910390a36116866000838361236b565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176790613123565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161184e9190612545565b60405180910390a3505050565b6000611867848461130c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146118e157818110156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca9061318f565b60405180910390fd5b6118e08484848403611692565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613221565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bc906132b3565b60405180910390fd5b6119d0838383611c23565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613345565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b449190612545565b60405180910390a3611b5784848461236b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611cb3575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce9906133b1565b60405180910390fd5b736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d825750736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906133b1565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611e5157507377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e87906133b1565b60405180910390fd5b732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f205750732e074cb1a5d88931b251833a0fef227f5d808dc273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f56906133b1565b60405180910390fd5b7355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611fef57507355dc2a116bfe1b3eb345203460db08b6bb65d34f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61202e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612025906133b1565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156120be57507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f4906133b1565b60405180910390fd5b73111527f1386c6725a2f5986230f3060bdcac041f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561218d575073111527f1386c6725a2f5986230f3060bdcac041f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b6121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906133b1565b60405180910390fd5b7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561225c57507376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b61229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906133b1565b60405180910390fd5b71b8e312942521fb3bf278d2ef2458b0d3f24373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612327575071b8e312942521fb3bf278d2ef2458b0d3f24373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d906133b1565b60405180910390fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123aa57808201518184015260208101905061238f565b60008484015250505050565b6000601f19601f8301169050919050565b60006123d282612370565b6123dc818561237b565b93506123ec81856020860161238c565b6123f5816123b6565b840191505092915050565b6000602082019050818103600083015261241a81846123c7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124578261242c565b9050919050565b6124678161244c565b811461247257600080fd5b50565b6000813590506124848161245e565b92915050565b6000819050919050565b61249d8161248a565b81146124a857600080fd5b50565b6000813590506124ba81612494565b92915050565b600080604083850312156124d7576124d6612422565b5b60006124e585828601612475565b92505060206124f6858286016124ab565b9150509250929050565b60008115159050919050565b61251581612500565b82525050565b6000602082019050612530600083018461250c565b92915050565b61253f8161248a565b82525050565b600060208201905061255a6000830184612536565b92915050565b60008060006060848603121561257957612578612422565b5b600061258786828701612475565b935050602061259886828701612475565b92505060406125a9868287016124ab565b9150509250925092565b600060ff82169050919050565b6125c9816125b3565b82525050565b60006020820190506125e460008301846125c0565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261260f5761260e6125ea565b5b8235905067ffffffffffffffff81111561262c5761262b6125ef565b5b602083019150836020820283011115612648576126476125f4565b5b9250929050565b6000806020838503121561266657612665612422565b5b600083013567ffffffffffffffff81111561268457612683612427565b5b612690858286016125f9565b92509250509250929050565b6000602082840312156126b2576126b1612422565b5b60006126c084828501612475565b91505092915050565b60006126d48261242c565b9050919050565b6126e4816126c9565b81146126ef57600080fd5b50565b600081359050612701816126db565b92915050565b60006020828403121561271d5761271c612422565b5b600061272b848285016126f2565b91505092915050565b61273d8161244c565b82525050565b60006020820190506127586000830184612734565b92915050565b60006020828403121561277457612773612422565b5b6000612782848285016124ab565b91505092915050565b60006040820190506127a06000830185612734565b6127ad6020830184612536565b9392505050565b600080604083850312156127cb576127ca612422565b5b60006127d985828601612475565b92505060206127ea85828601612475565b9150509250929050565b6127fd81612500565b811461280857600080fd5b50565b60008135905061281a816127f4565b92915050565b6000806040838503121561283757612836612422565b5b600061284585828601612475565b92505060206128568582860161280b565b9150509250929050565b60006020828403121561287657612875612422565b5b60006128848482850161280b565b91505092915050565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b60006128c360188361237b565b91506128ce8261288d565b602082019050919050565b600060208201905081810360008301526128f2816128b6565b9050919050565b7f436f6e747269627574696f6e20746f6f206c6f77000000000000000000000000600082015250565b600061292f60148361237b565b915061293a826128f9565b602082019050919050565b6000602082019050818103600083015261295e81612922565b9050919050565b7f436f6e747269627574696f6e73206e6f7420616c6c6f77656400000000000000600082015250565b600061299b60198361237b565b91506129a682612965565b602082019050919050565b600060208201905081810360008301526129ca8161298e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a0b8261248a565b9150612a168361248a565b9250828201905080821115612a2e57612a2d6129d1565b5b92915050565b7f436f6e747269627574696f6e2065786365656473207065722077616c6c65742060008201527f6c696d6974000000000000000000000000000000000000000000000000000000602082015250565b6000612a9060258361237b565b9150612a9b82612a34565b604082019050919050565b60006020820190508181036000830152612abf81612a83565b9050919050565b7f436f6e747269627574696f6e2065786365656473206861726420636170000000600082015250565b6000612afc601d8361237b565b9150612b0782612ac6565b602082019050919050565b60006020820190508181036000830152612b2b81612aef565b9050919050565b6000612b3d8261248a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b6f57612b6e6129d1565b5b600182019050919050565b6000612b858261248a565b9150612b908361248a565b9250828202612b9e8161248a565b91508282048414831517612bb557612bb46129d1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612bf68261248a565b9150612c018361248a565b925082612c1157612c10612bbc565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6357607f821691505b602082108103612c7657612c75612c1c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612cb68261248a565b9150612cc18361248a565b9250828203905081811115612cd957612cd86129d1565b5b92915050565b7f4d696e74696e67206578636565647320726573657276656420746f6b656e207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b6000612d3b60258361237b565b9150612d4682612cdf565b604082019050919050565b60006020820190508181036000830152612d6a81612d2e565b9050919050565b600081905092915050565b50565b6000612d8c600083612d71565b9150612d9782612d7c565b600082019050919050565b6000612dad82612d7f565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000612ded600f8361237b565b9150612df882612db7565b602082019050919050565b60006020820190508181036000830152612e1c81612de0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e7f60258361237b565b9150612e8a82612e23565b604082019050919050565b60006020820190508181036000830152612eae81612e72565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1160268361237b565b9150612f1c82612eb5565b604082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7d60208361237b565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612fe9601f8361237b565b9150612ff482612fb3565b602082019050919050565b6000602082019050818103600083015261301881612fdc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061307b60248361237b565b91506130868261301f565b604082019050919050565b600060208201905081810360008301526130aa8161306e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061310d60228361237b565b9150613118826130b1565b604082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613179601d8361237b565b915061318482613143565b602082019050919050565b600060208201905081810360008301526131a88161316c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061320b60258361237b565b9150613216826131af565b604082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061329d60238361237b565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061332f60268361237b565b915061333a826132d3565b604082019050919050565b6000602082019050818103600083015261335e81613322565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061339b600b8361237b565b91506133a682613365565b602082019050919050565b600060208201905081810360008301526133ca8161338e565b905091905056fea2646970667358221220e059ec9d65d053e30f2bdc20ee0e5694cf5d2db7ccc15a3cd331ee82dc964d2664736f6c63430008130033

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.