ETH Price: $3,309.72 (+1.16%)
Gas: 4 Gwei

Token

Helix (HELIX)
 

Overview

Max Total Supply

216,341,556.800742932367874076 HELIX

Holders

171 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Helix is an automated market maker (AMM) decentralized exchange, and yield swap protocol deployed on the Ethereum blockchain, with its native crypto assets, the HELIX governance token, used to interact with the platform in various ways that relate to financial activities and governance.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HelixToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : HelixToken.sol
//SPDX-License-Identifier:MIT
pragma solidity >=0.8.0;

// Copied and modified from YAM code:
// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
// Which is copied and modified from COMPOUND:
// https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

import "../libraries/ERC20.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

/// Geometry governance token
contract HelixToken is ERC20("Helix", "HELIX") {
    using EnumerableSet for EnumerableSet.AddressSet;

    // @notice Checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    // Set of addresses which can mint HELIX
    EnumerableSet.AddressSet private _minters;
 
    /// @dev A record of each accounts delegate
    mapping(address => address) internal _delegates;

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    /// @notice A record of states for signing / validating signatures
    mapping(address => uint256) public nonces;

    /// @notice An event that's emitted when an account changes its delegate
    event DelegateChanged(
        address indexed delegator,
        address indexed fromDelegate,
        address indexed toDelegate
    );

    /// @notice An event that's emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(
        address indexed delegate,
        uint256 previousBalance,
        uint256 newBalance
    );

    modifier onlyMinter() {
        require(isMinter(msg.sender), "Helix: not minter");
        _;
    }

    modifier onlyValidAddress(address _address) {
        require(_address != address(0), "Helix: zero address");
        _;
    }

    /// @notice Creates _amount of token to _to.
    function mint(address _to, uint256 _amount)
        external 
        onlyMinter
        returns (bool)
    {
        _mint(_to, _amount);
        _moveDelegates(address(0), _delegates[_to], _amount);
        return true;
    }

    /// @notice Destroys _amount tokens from _account reducing the total supply
    function burn(address _account, uint256 _amount) external onlyMinter {
        _burn(_account, _amount);
    }

    /// @notice Delegate votes from msg.sender to _delegatee
    /// @param _delegatee The address to delegate votes to
    function delegate(address _delegatee) external {
        return _delegate(msg.sender, _delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param _delegatee The address to delegate votes to
     * @param _nonce The contract state required to match the signature
     * @param _expiry The time at which to expire the signature
     * @param _v The recovery byte of the signature
     * @param _r Half of the ECDSA signature pair
     * @param _s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address _delegatee,
        uint256 _nonce,
        uint256 _expiry,
        uint8 _v,
        bytes32 _r,
        bytes32 _s
    ) external {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                _getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(DELEGATION_TYPEHASH, _delegatee, _nonce, _expiry)
        );

        bytes32 digest = keccak256(
            abi.encodePacked("\x19\x01", domainSeparator, structHash)
        );

        address signatory = ecrecover(digest, _v, _r, _s);

        require(signatory != address(0), "Helix: invalid signature");
        require(_nonce == nonces[signatory]++, "Helix: invalid nonce");
        require(block.timestamp <= _expiry, "Helix: signature expired");

        return _delegate(signatory, _delegatee);
    }

    /**
     * @dev used by owner to delete minter of token
     * @param _delMinter address of minter to be deleted.
     * @return true if successful.
     */
    function delMinter(address _delMinter) external onlyOwner onlyValidAddress(_delMinter) returns (bool) {
        return EnumerableSet.remove(_minters, _delMinter);
    }

    /// @notice Delegate votes from msg.sender to _delegatee
    /// @param _delegator The address to get delegatee for
    function delegates(address _delegator) external view returns (address) {
        return _delegates[_delegator];
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param _account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address _account) external view returns (uint256) {
        uint32 nCheckpoints = numCheckpoints[_account];
        return
            nCheckpoints > 0 ? checkpoints[_account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param _account The address of the account to check
     * @param _blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address _account, uint256 _blockNumber)
        external
        view
        returns (uint256)
    {
        require(_blockNumber < block.number, "Helix: invalid blockNumber");

        uint32 nCheckpoints = numCheckpoints[_account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[_account][nCheckpoints - 1].fromBlock <= _blockNumber) {
            return checkpoints[_account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[_account][0].fromBlock > _blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[_account][center];
            if (cp.fromBlock == _blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < _blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[_account][lower].votes;
    }

    /**
     * @dev used by get the minter at n location
     * @param _index index of address set
     * @return address of minter at index.
     */
    function getMinter(uint256 _index)
        external
        view
        onlyOwner
        returns (address)
    {
        require(_index <= getMinterLength() - 1, "Helix: index out of bounds");
        return EnumerableSet.at(_minters, _index);
    }

    /**
     * @dev used by owner to add minter of token
     * @param _addMinter address of minter to be added.
     * @return true if successful.
     */
    function addMinter(address _addMinter) public onlyOwner onlyValidAddress(_addMinter) returns (bool) {
        return EnumerableSet.add(_minters, _addMinter);
    }

    /// @dev used to get the number of minters for this token
    /// @return number of minters.
    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

    /// @dev used to check if an address is a minter of token
    /// @return true or false based on minter status.
    function isMinter(address _account) public view returns (bool) {
        return EnumerableSet.contains(_minters, _account);
    }

    // internal function used delegate votes
    function _delegate(address _delegator, address _delegatee) internal {
        address currentDelegate = _delegates[_delegator];
        uint256 delegatorBalance = balanceOf(_delegator); // balance of underlying HELIXs (not scaled);
        _delegates[_delegator] = _delegatee;

        emit DelegateChanged(_delegator, currentDelegate, _delegatee);

        _moveDelegates(currentDelegate, _delegatee, delegatorBalance);
    }

    // send delegate votes from src to dst in amount
    function _moveDelegates(
        address _srcRep,
        address _dstRep,
        uint256 _amount
    ) internal {
        if (_srcRep != _dstRep && _amount > 0) {
            if (_srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[_srcRep];
                uint256 srcRepOld = srcRepNum > 0
                    ? checkpoints[_srcRep][srcRepNum - 1].votes
                    : 0;
                uint256 srcRepNew = srcRepOld - _amount;
                _writeCheckpoint(_srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (_dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[_dstRep];
                uint256 dstRepOld = dstRepNum > 0
                    ? checkpoints[_dstRep][dstRepNum - 1].votes
                    : 0;
                uint256 dstRepNew = dstRepOld + _amount;
                _writeCheckpoint(_dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address _delegatee,
        uint32 _nCheckpoints,
        uint256 _oldVotes,
        uint256 _newVotes
    ) internal {
        uint32 blockNumber = _safe32(
            block.number,
            "HELIX::_writeCheckpoint: block number exceeds 32 bits"
        );

        if (
            _nCheckpoints > 0 &&
            checkpoints[_delegatee][_nCheckpoints - 1].fromBlock == blockNumber
        ) {
            checkpoints[_delegatee][_nCheckpoints - 1].votes = _newVotes;
        } else {
            checkpoints[_delegatee][_nCheckpoints] = Checkpoint(
                blockNumber,
                _newVotes
            );
            numCheckpoints[_delegatee] = _nCheckpoints + 1;
        }

        emit DelegateVotesChanged(_delegatee, _oldVotes, _newVotes);
    }

    // @dev used get current chain ID
    // @return id as a uint
    function _getChainId() internal view returns (uint256 id) {
        id = block.chainid;
    }

    /*
     * @dev Checks if value is 32 bits
     * @param _n value to be checked
     * @param _errorMessage error message to throw if fails
     * @return The number if valid.
     */
    function _safe32(uint256 _n, string memory _errorMessage)
        internal
        pure
        returns (uint32)
    {
        require(_n < 2**32, _errorMessage);
        return uint32(_n);
    }
}

File 2 of 7 : ERC20.sol
//SPDX-License-Identifier:MIT
pragma solidity >=0.8.0;

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

contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    uint256 private constant _maxSupply = 1000000000 * 1e18;        // 1B
    uint256 private constant _preMineSupply = 160000000 * 1e18;     // 16% of 1B

    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}, initializes {decimals} with
     * a default value of 18.
     *
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory tokenName, string memory tokenSymbol) {
        _name = tokenName;
        _symbol = tokenSymbol;

        _mint(msg.sender, _preMineSupply); // mint token to msg owner
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address) {
        return owner();
    }

    /**
     * @dev Returns the token name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token symbol.
     */
    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];
    }

    /**
     * @notice supply that was mented to the contract owner.
     */

    function preMineSupply() public pure returns (uint256) {
        return _preMineSupply;
    }

    /**
     * @notice max supply that can eer be minted.
     */
    function maxSupply() public pure returns (uint256) {
        return _maxSupply;
    }

    /**
     * @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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _approve(
            _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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] -= amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        if (amount + _totalSupply > _maxSupply) {
            revert();
            // return false;
        }

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] -= amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()] - amount
        );
    }
}

File 3 of 7 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

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

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 `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);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 7 : 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 7 of 7 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegatee","type":"address"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"uint256","name":"_expiry","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMineSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806005815260200164090cad8d2f60db1b815250604051806040016040528060058152602001640908a9892b60db1b8152506200006862000062620000b360201b60201c565b620000b7565b81516200007d90600490602085019062000218565b5080516200009390600590602084019062000218565b50620000ab336a84595161401484a000000062000107565b505062000322565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6b033b2e3c9fd0803ce8000000600354826200017f9190620002be565b11156200018b57600080fd5b80600360008282546200019f9190620002be565b90915550506001600160a01b03821660009081526001602052604081208054839290620001ce908490620002be565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200022690620002e5565b90600052602060002090601f0160209004810192826200024a576000855562000295565b82601f106200026557805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029557825182559160200191906001019062000278565b50620002a3929150620002a7565b5090565b5b80821115620002a35760008155600101620002a8565b60008219821115620002e057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002fa57607f821691505b602082108114156200031c57634e487b7160e01b600052602260045260246000fd5b50919050565b611eb380620003326000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063782d6fe11161011a578063a9059cbb116100ad578063d5abeb011161007c578063d5abeb01146104a2578063dd62ed3e146104b4578063e7a324dc146104ed578063f1127ed814610514578063f2fde38b1461056b57600080fd5b8063a9059cbb14610456578063aa271e1a14610469578063b4b5ea571461047c578063c3cda5201461048f57600080fd5b806395d89b41116100e957806395d89b4114610415578063983b2d561461041d5780639dc29fac14610430578063a457c2d71461044357600080fd5b8063782d6fe1146103d15780637ecebe00146103e4578063893d20e8146104045780638da5cb5b1461040457600080fd5b8063313ce5671161019d5780635b7121f81161016c5780635b7121f81461033d5780635c19a95c146103505780636fcfff451461036557806370a08231146103a0578063715018a6146103c957600080fd5b8063313ce567146102c457806339509351146102d357806340c10f19146102e6578063587cde1e146102f957600080fd5b806318160ddd116101d957806318160ddd1461026f57806320606b701461027757806323338b881461029e57806323b872dd146102b157600080fd5b80630323aac71461020b57806306fdde0314610226578063095ea7b31461023b5780630c16ea831461025e575b600080fd5b61021361057e565b6040519081526020015b60405180910390f35b61022e61058f565b60405161021d9190611afb565b61024e610249366004611b67565b610621565b604051901515815260200161021d565b6a84595161401484a0000000610213565b600354610213565b6102137f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61024e6102ac366004611b91565b610638565b61024e6102bf366004611bac565b6106cd565b6040516012815260200161021d565b61024e6102e1366004611b67565b610777565b61024e6102f4366004611b67565b6107b3565b610325610307366004611b91565b6001600160a01b039081166000908152600860205260409020541690565b6040516001600160a01b03909116815260200161021d565b61032561034b366004611be8565b61082d565b61036361035e366004611b91565b6108ce565b005b61038b610373366004611b91565b600a6020526000908152604090205463ffffffff1681565b60405163ffffffff909116815260200161021d565b6102136103ae366004611b91565b6001600160a01b031660009081526001602052604090205490565b6103636108db565b6102136103df366004611b67565b610911565b6102136103f2366004611b91565b600b6020526000908152604090205481565b6000546001600160a01b0316610325565b61022e610b66565b61024e61042b366004611b91565b610b75565b61036361043e366004611b67565b610bf8565b61024e610451366004611b67565b610c4f565b61024e610464366004611b67565b610ce8565b61024e610477366004611b91565b610cf5565b61021361048a366004611b91565b610d02565b61036361049d366004611c01565b610d76565b6b033b2e3c9fd0803ce8000000610213565b6102136104c2366004611c61565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102137fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b61054f610522366004611c94565b60096020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff909316835260208301919091520161021d565b610363610579366004611b91565b611012565b600061058a60066110aa565b905090565b60606004805461059e90611cd4565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca90611cd4565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b600061062e3384846110b4565b5060015b92915050565b600080546001600160a01b0316331461066c5760405162461bcd60e51b815260040161066390611d09565b60405180910390fd5b816001600160a01b0381166106b95760405162461bcd60e51b815260206004820152601360248201527248656c69783a207a65726f206164647265737360681b6044820152606401610663565b6106c46006846111d9565b91505b50919050565b60006106da8484846111f5565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561075f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610663565b61076c85338584036110b4565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161062e9185906107ae908690611d54565b6110b4565b60006107be33610cf5565b6107fe5760405162461bcd60e51b81526020600482015260116024820152702432b634bc1d103737ba1036b4b73a32b960791b6044820152606401610663565b610808838361135c565b6001600160a01b0380841660009081526008602052604081205461062e921684611462565b600080546001600160a01b031633146108585760405162461bcd60e51b815260040161066390611d09565b600161086261057e565b61086c9190611d6c565b8211156108bb5760405162461bcd60e51b815260206004820152601a60248201527f48656c69783a20696e646578206f7574206f6620626f756e64730000000000006044820152606401610663565b6108c66006836115c6565b90505b919050565b6108d833826115d2565b50565b6000546001600160a01b031633146109055760405162461bcd60e51b815260040161066390611d09565b61090f6000611652565b565b60004382106109625760405162461bcd60e51b815260206004820152601a60248201527f48656c69783a20696e76616c696420626c6f636b4e756d6265720000000000006044820152606401610663565b6001600160a01b0383166000908152600a602052604090205463ffffffff1680610990576000915050610632565b6001600160a01b038416600090815260096020526040812084916109b5600185611d83565b63ffffffff90811682526020820192909252604001600020541611610a1e576001600160a01b0384166000908152600960205260408120906109f8600184611d83565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610632565b6001600160a01b038416600090815260096020908152604080832083805290915290205463ffffffff16831015610a59576000915050610632565b600080610a67600184611d83565b90505b8163ffffffff168163ffffffff161115610b2f5760006002610a8c8484611d83565b610a969190611da8565b610aa09083611d83565b6001600160a01b038816600090815260096020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610b03576020015194506106329350505050565b805163ffffffff16871115610b1a57819350610b28565b610b25600183611d83565b92505b5050610a6a565b506001600160a01b038516600090815260096020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606005805461059e90611cd4565b600080546001600160a01b03163314610ba05760405162461bcd60e51b815260040161066390611d09565b816001600160a01b038116610bed5760405162461bcd60e51b815260206004820152601360248201527248656c69783a207a65726f206164647265737360681b6044820152606401610663565b6106c46006846116a2565b610c0133610cf5565b610c415760405162461bcd60e51b81526020600482015260116024820152702432b634bc1d103737ba1036b4b73a32b960791b6044820152606401610663565b610c4b82826116b7565b5050565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610cd15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610663565b610cde33858584036110b4565b5060019392505050565b600061062e3384846111f5565b60006108c660068361179b565b6001600160a01b0381166000908152600a602052604081205463ffffffff1680610d2d5760006106c4565b6001600160a01b038316600090815260096020526040812090610d51600184611d83565b63ffffffff1663ffffffff168152602001908152602001600020600101549392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610da161058f565b80519060200120610daf4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610edb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f3e5760405162461bcd60e51b815260206004820152601860248201527f48656c69783a20696e76616c6964207369676e617475726500000000000000006044820152606401610663565b6001600160a01b0381166000908152600b60205260408120805491610f6283611dd9565b919050558914610fab5760405162461bcd60e51b815260206004820152601460248201527348656c69783a20696e76616c6964206e6f6e636560601b6044820152606401610663565b87421115610ffb5760405162461bcd60e51b815260206004820152601860248201527f48656c69783a207369676e6174757265206578706972656400000000000000006044820152606401610663565b611005818b6115d2565b505050505b505050505050565b6000546001600160a01b0316331461103c5760405162461bcd60e51b815260040161066390611d09565b6001600160a01b0381166110a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610663565b6108d881611652565b60006108c6825490565b6001600160a01b0383166111165760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610663565b6001600160a01b0382166111775760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610663565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006111ee836001600160a01b0384166117bd565b9392505050565b6001600160a01b0383166112595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610663565b6001600160a01b0382166112bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610663565b6001600160a01b038316600090815260016020526040812080548392906112e3908490611d6c565b90915550506001600160a01b03821660009081526001602052604081208054839290611310908490611d54565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111cc91815260200190565b6001600160a01b0382166113b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610663565b6b033b2e3c9fd0803ce8000000600354826113cd9190611d54565b11156113d857600080fd5b80600360008282546113ea9190611d54565b90915550506001600160a01b03821660009081526001602052604081208054839290611417908490611d54565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156114845750600081115b156115c1576001600160a01b03831615611527576001600160a01b0383166000908152600a602052604081205463ffffffff1690816114c4576000611507565b6001600160a01b0385166000908152600960205260408120906114e8600185611d83565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006115158483611d6c565b9050611523868484846118b0565b5050505b6001600160a01b038216156115c1576001600160a01b0382166000908152600a602052604081205463ffffffff1690816115625760006115a5565b6001600160a01b038416600090815260096020526040812090611586600185611d83565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006115b38483611d54565b905061100a858484846118b0565b505050565b60006111ee8383611a52565b6001600160a01b03828116600081815260086020818152604080842080546001845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461164c828483611462565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006111ee836001600160a01b038416611a7c565b6001600160a01b0382166117175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610663565b6001600160a01b0382166000908152600160205260408120805483929061173f908490611d6c565b9250508190555080600360008282546117589190611d6c565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611456565b6001600160a01b038116600090815260018301602052604081205415156111ee565b600081815260018301602052604081205480156118a65760006117e1600183611d6c565b85549091506000906117f590600190611d6c565b905081811461185a57600086600001828154811061181557611815611df4565b906000526020600020015490508087600001848154811061183857611838611df4565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061186b5761186b611e0a565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610632565b6000915050610632565b60006118d443604051806060016040528060358152602001611e4960359139611acb565b905060008463ffffffff1611801561192e57506001600160a01b038516600090815260096020526040812063ffffffff831691611912600188611d83565b63ffffffff908116825260208201929092526040016000205416145b15611977576001600160a01b03851660009081526009602052604081208391611958600188611d83565b63ffffffff168152602081019190915260400160002060010155611a07565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600983528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556119d6908590611e20565b6001600160a01b0386166000908152600a60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000826000018281548110611a6957611a69611df4565b9060005260206000200154905092915050565b6000818152600183016020526040812054611ac357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610632565b506000610632565b6000816401000000008410611af35760405162461bcd60e51b81526004016106639190611afb565b509192915050565b600060208083528351808285015260005b81811015611b2857858101830151858201604001528201611b0c565b81811115611b3a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146108c957600080fd5b60008060408385031215611b7a57600080fd5b611b8383611b50565b946020939093013593505050565b600060208284031215611ba357600080fd5b6111ee82611b50565b600080600060608486031215611bc157600080fd5b611bca84611b50565b9250611bd860208501611b50565b9150604084013590509250925092565b600060208284031215611bfa57600080fd5b5035919050565b60008060008060008060c08789031215611c1a57600080fd5b611c2387611b50565b95506020870135945060408701359350606087013560ff81168114611c4757600080fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611c7457600080fd5b611c7d83611b50565b9150611c8b60208401611b50565b90509250929050565b60008060408385031215611ca757600080fd5b611cb083611b50565b9150602083013563ffffffff81168114611cc957600080fd5b809150509250929050565b600181811c90821680611ce857607f821691505b602082108114156106c757634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d6757611d67611d3e565b500190565b600082821015611d7e57611d7e611d3e565b500390565b600063ffffffff83811690831681811015611da057611da0611d3e565b039392505050565b600063ffffffff80841680611dcd57634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6000600019821415611ded57611ded611d3e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600063ffffffff808316818516808303821115611e3f57611e3f611d3e565b0194935050505056fe48454c49583a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220c4019cbb0f59d50bb0783676631eefb109c9bd6ffd8abc8cb9a89290aa5d825264736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063782d6fe11161011a578063a9059cbb116100ad578063d5abeb011161007c578063d5abeb01146104a2578063dd62ed3e146104b4578063e7a324dc146104ed578063f1127ed814610514578063f2fde38b1461056b57600080fd5b8063a9059cbb14610456578063aa271e1a14610469578063b4b5ea571461047c578063c3cda5201461048f57600080fd5b806395d89b41116100e957806395d89b4114610415578063983b2d561461041d5780639dc29fac14610430578063a457c2d71461044357600080fd5b8063782d6fe1146103d15780637ecebe00146103e4578063893d20e8146104045780638da5cb5b1461040457600080fd5b8063313ce5671161019d5780635b7121f81161016c5780635b7121f81461033d5780635c19a95c146103505780636fcfff451461036557806370a08231146103a0578063715018a6146103c957600080fd5b8063313ce567146102c457806339509351146102d357806340c10f19146102e6578063587cde1e146102f957600080fd5b806318160ddd116101d957806318160ddd1461026f57806320606b701461027757806323338b881461029e57806323b872dd146102b157600080fd5b80630323aac71461020b57806306fdde0314610226578063095ea7b31461023b5780630c16ea831461025e575b600080fd5b61021361057e565b6040519081526020015b60405180910390f35b61022e61058f565b60405161021d9190611afb565b61024e610249366004611b67565b610621565b604051901515815260200161021d565b6a84595161401484a0000000610213565b600354610213565b6102137f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61024e6102ac366004611b91565b610638565b61024e6102bf366004611bac565b6106cd565b6040516012815260200161021d565b61024e6102e1366004611b67565b610777565b61024e6102f4366004611b67565b6107b3565b610325610307366004611b91565b6001600160a01b039081166000908152600860205260409020541690565b6040516001600160a01b03909116815260200161021d565b61032561034b366004611be8565b61082d565b61036361035e366004611b91565b6108ce565b005b61038b610373366004611b91565b600a6020526000908152604090205463ffffffff1681565b60405163ffffffff909116815260200161021d565b6102136103ae366004611b91565b6001600160a01b031660009081526001602052604090205490565b6103636108db565b6102136103df366004611b67565b610911565b6102136103f2366004611b91565b600b6020526000908152604090205481565b6000546001600160a01b0316610325565b61022e610b66565b61024e61042b366004611b91565b610b75565b61036361043e366004611b67565b610bf8565b61024e610451366004611b67565b610c4f565b61024e610464366004611b67565b610ce8565b61024e610477366004611b91565b610cf5565b61021361048a366004611b91565b610d02565b61036361049d366004611c01565b610d76565b6b033b2e3c9fd0803ce8000000610213565b6102136104c2366004611c61565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102137fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b61054f610522366004611c94565b60096020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff909316835260208301919091520161021d565b610363610579366004611b91565b611012565b600061058a60066110aa565b905090565b60606004805461059e90611cd4565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca90611cd4565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b600061062e3384846110b4565b5060015b92915050565b600080546001600160a01b0316331461066c5760405162461bcd60e51b815260040161066390611d09565b60405180910390fd5b816001600160a01b0381166106b95760405162461bcd60e51b815260206004820152601360248201527248656c69783a207a65726f206164647265737360681b6044820152606401610663565b6106c46006846111d9565b91505b50919050565b60006106da8484846111f5565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561075f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610663565b61076c85338584036110b4565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161062e9185906107ae908690611d54565b6110b4565b60006107be33610cf5565b6107fe5760405162461bcd60e51b81526020600482015260116024820152702432b634bc1d103737ba1036b4b73a32b960791b6044820152606401610663565b610808838361135c565b6001600160a01b0380841660009081526008602052604081205461062e921684611462565b600080546001600160a01b031633146108585760405162461bcd60e51b815260040161066390611d09565b600161086261057e565b61086c9190611d6c565b8211156108bb5760405162461bcd60e51b815260206004820152601a60248201527f48656c69783a20696e646578206f7574206f6620626f756e64730000000000006044820152606401610663565b6108c66006836115c6565b90505b919050565b6108d833826115d2565b50565b6000546001600160a01b031633146109055760405162461bcd60e51b815260040161066390611d09565b61090f6000611652565b565b60004382106109625760405162461bcd60e51b815260206004820152601a60248201527f48656c69783a20696e76616c696420626c6f636b4e756d6265720000000000006044820152606401610663565b6001600160a01b0383166000908152600a602052604090205463ffffffff1680610990576000915050610632565b6001600160a01b038416600090815260096020526040812084916109b5600185611d83565b63ffffffff90811682526020820192909252604001600020541611610a1e576001600160a01b0384166000908152600960205260408120906109f8600184611d83565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610632565b6001600160a01b038416600090815260096020908152604080832083805290915290205463ffffffff16831015610a59576000915050610632565b600080610a67600184611d83565b90505b8163ffffffff168163ffffffff161115610b2f5760006002610a8c8484611d83565b610a969190611da8565b610aa09083611d83565b6001600160a01b038816600090815260096020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610b03576020015194506106329350505050565b805163ffffffff16871115610b1a57819350610b28565b610b25600183611d83565b92505b5050610a6a565b506001600160a01b038516600090815260096020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606005805461059e90611cd4565b600080546001600160a01b03163314610ba05760405162461bcd60e51b815260040161066390611d09565b816001600160a01b038116610bed5760405162461bcd60e51b815260206004820152601360248201527248656c69783a207a65726f206164647265737360681b6044820152606401610663565b6106c46006846116a2565b610c0133610cf5565b610c415760405162461bcd60e51b81526020600482015260116024820152702432b634bc1d103737ba1036b4b73a32b960791b6044820152606401610663565b610c4b82826116b7565b5050565b3360009081526002602090815260408083206001600160a01b038616845290915281205482811015610cd15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610663565b610cde33858584036110b4565b5060019392505050565b600061062e3384846111f5565b60006108c660068361179b565b6001600160a01b0381166000908152600a602052604081205463ffffffff1680610d2d5760006106c4565b6001600160a01b038316600090815260096020526040812090610d51600184611d83565b63ffffffff1663ffffffff168152602001908152602001600020600101549392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610da161058f565b80519060200120610daf4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610edb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f3e5760405162461bcd60e51b815260206004820152601860248201527f48656c69783a20696e76616c6964207369676e617475726500000000000000006044820152606401610663565b6001600160a01b0381166000908152600b60205260408120805491610f6283611dd9565b919050558914610fab5760405162461bcd60e51b815260206004820152601460248201527348656c69783a20696e76616c6964206e6f6e636560601b6044820152606401610663565b87421115610ffb5760405162461bcd60e51b815260206004820152601860248201527f48656c69783a207369676e6174757265206578706972656400000000000000006044820152606401610663565b611005818b6115d2565b505050505b505050505050565b6000546001600160a01b0316331461103c5760405162461bcd60e51b815260040161066390611d09565b6001600160a01b0381166110a15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610663565b6108d881611652565b60006108c6825490565b6001600160a01b0383166111165760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610663565b6001600160a01b0382166111775760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610663565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006111ee836001600160a01b0384166117bd565b9392505050565b6001600160a01b0383166112595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610663565b6001600160a01b0382166112bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610663565b6001600160a01b038316600090815260016020526040812080548392906112e3908490611d6c565b90915550506001600160a01b03821660009081526001602052604081208054839290611310908490611d54565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111cc91815260200190565b6001600160a01b0382166113b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610663565b6b033b2e3c9fd0803ce8000000600354826113cd9190611d54565b11156113d857600080fd5b80600360008282546113ea9190611d54565b90915550506001600160a01b03821660009081526001602052604081208054839290611417908490611d54565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156114845750600081115b156115c1576001600160a01b03831615611527576001600160a01b0383166000908152600a602052604081205463ffffffff1690816114c4576000611507565b6001600160a01b0385166000908152600960205260408120906114e8600185611d83565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006115158483611d6c565b9050611523868484846118b0565b5050505b6001600160a01b038216156115c1576001600160a01b0382166000908152600a602052604081205463ffffffff1690816115625760006115a5565b6001600160a01b038416600090815260096020526040812090611586600185611d83565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006115b38483611d54565b905061100a858484846118b0565b505050565b60006111ee8383611a52565b6001600160a01b03828116600081815260086020818152604080842080546001845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461164c828483611462565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006111ee836001600160a01b038416611a7c565b6001600160a01b0382166117175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610663565b6001600160a01b0382166000908152600160205260408120805483929061173f908490611d6c565b9250508190555080600360008282546117589190611d6c565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611456565b6001600160a01b038116600090815260018301602052604081205415156111ee565b600081815260018301602052604081205480156118a65760006117e1600183611d6c565b85549091506000906117f590600190611d6c565b905081811461185a57600086600001828154811061181557611815611df4565b906000526020600020015490508087600001848154811061183857611838611df4565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061186b5761186b611e0a565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610632565b6000915050610632565b60006118d443604051806060016040528060358152602001611e4960359139611acb565b905060008463ffffffff1611801561192e57506001600160a01b038516600090815260096020526040812063ffffffff831691611912600188611d83565b63ffffffff908116825260208201929092526040016000205416145b15611977576001600160a01b03851660009081526009602052604081208391611958600188611d83565b63ffffffff168152602081019190915260400160002060010155611a07565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152600983528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556119d6908590611e20565b6001600160a01b0386166000908152600a60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000826000018281548110611a6957611a69611df4565b9060005260206000200154905092915050565b6000818152600183016020526040812054611ac357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610632565b506000610632565b6000816401000000008410611af35760405162461bcd60e51b81526004016106639190611afb565b509192915050565b600060208083528351808285015260005b81811015611b2857858101830151858201604001528201611b0c565b81811115611b3a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146108c957600080fd5b60008060408385031215611b7a57600080fd5b611b8383611b50565b946020939093013593505050565b600060208284031215611ba357600080fd5b6111ee82611b50565b600080600060608486031215611bc157600080fd5b611bca84611b50565b9250611bd860208501611b50565b9150604084013590509250925092565b600060208284031215611bfa57600080fd5b5035919050565b60008060008060008060c08789031215611c1a57600080fd5b611c2387611b50565b95506020870135945060408701359350606087013560ff81168114611c4757600080fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611c7457600080fd5b611c7d83611b50565b9150611c8b60208401611b50565b90509250929050565b60008060408385031215611ca757600080fd5b611cb083611b50565b9150602083013563ffffffff81168114611cc957600080fd5b809150509250929050565b600181811c90821680611ce857607f821691505b602082108114156106c757634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d6757611d67611d3e565b500190565b600082821015611d7e57611d7e611d3e565b500390565b600063ffffffff83811690831681811015611da057611da0611d3e565b039392505050565b600063ffffffff80841680611dcd57634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6000600019821415611ded57611ded611d3e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600063ffffffff808316818516808303821115611e3f57611e3f611d3e565b0194935050505056fe48454c49583a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220c4019cbb0f59d50bb0783676631eefb109c9bd6ffd8abc8cb9a89290aa5d825264736f6c634300080a0033

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.