ETH Price: $3,470.12 (+5.96%)
Gas: 8 Gwei

Token

ATTOMS (ATTOMS)
 

Overview

Max Total Supply

10,000,000 ATTOMS

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,868.857745251532901765 ATTOMS

Value
$0.00
0x83f00238723b4c7C3d79A21B3675b0b90F664844
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:
ATTOMS

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-13
*/

/**
Telegram: https://t.me/ATTOMS_FAMILY
Twitter: https://twitter.com/AttomsNFT
Website: https://www.theattoms.xyz/
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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: ATTOMS.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface DexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract ATTOMS is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 10000000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(0);
    Tax public sellTaxes = Tax(0);
    Tax public transferTaxes = Tax(0);


    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    uint256 public maxWalletPercentage = 100;

    //Swapping
    uint256 public swapTokensAtAmount = (_totalSupply * 5) / 1000000; //after 0.0005% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = true;
    uint256 public startTradingBlock;

    //Wallets
    address public DevelopmentWallet = 0xC332c6e3cc023398b7661Bf3B08A674abc7760fF;

    //Events
    event DevelopmentWalletChanged(address indexed _trWallet);
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event TransferFeesUpdated(uint256 indexed _trFee);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);

    constructor() ERC20("ATTOMS", "ATTOMS") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // main  
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);

    }

    function setDevelopmentWallet(address _newDevelopment) external onlyOwner {
        require(
            _newDevelopment != address(0),
            "can not set Development to dead wallet"
        );
        DevelopmentWallet = _newDevelopment;
        emit DevelopmentWalletChanged(_newDevelopment);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 20, "Can not set buy fees higher than 20%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 20, "Can not set buy fees higher than 20%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
}

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
    function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }
        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }

        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");
    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (
        !whitelisted[_from] &&
        !whitelisted[_to]
    ) {
        require(tradingEnabled, "Trading not active");

        // Check if the receiver's balance exceeds the maximum wallet percentage
        if (_to != pairAddress && balanceOf(_to) + toTransfer > (_totalSupply * maxWalletPercentage) / 100) {
            revert("Wallet balance exceeds maximum percentage");
        }

        if (
            pairAddress == _to &&
            swapAndLiquifyEnabled &&
            canSwap &&
            !isSwapping
        ) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = DevelopmentWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function withdrawStuckETH() external onlyOwner {
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "transferring ETH failed");
    }

    function withdrawStuckTokens(address BEP20_token) external onlyOwner {
        bool success = IERC20(BEP20_token).transfer(
            msg.sender,
            IERC20(BEP20_token).balanceOf(address(this))
        );
        require(success, "transferring tokens failed!");
        require(BEP20_token != address(this), "Owner cannot claim native tokens"); 
           }

    receive() external payable {}
}

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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"DevelopmentWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"TransferFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"inputs":[],"name":"DevelopmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDevelopment","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"BEP20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600060c0819052600681905560e081905260078190556101206040526101008190526008556064600a55620f4240620000456a084595161401484a00000060056200040d565b6200005191906200042d565b600b55600c80546201000162ffffff19909116179055600e80546001600160a01b03191673c332c6e3cc023398b7661bf3b08a674abc7760ff1790553480156200009a57600080fd5b506040805180820182526006808252654154544f4d5360d01b6020808401829052845180860190955291845290830152906003620000d98382620004f4565b506004620000e88282620004f4565b50505062000105620000ff620002d660201b60201c565b620002da565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200015b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001819190620005c0565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f79190620005c0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000245573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026b9190620005c0565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002d0906a084595161401484a0000006200032c565b62000608565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003875760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200039b9190620005f2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004275762000427620003f7565b92915050565b6000826200044b57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047b57607f821691505b6020821081036200049c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f257600081815260208120601f850160051c81016020861015620004cb5750805b601f850160051c820191505b81811015620004ec57828155600101620004d7565b505050505050565b81516001600160401b0381111562000510576200051062000450565b620005288162000521845462000466565b84620004a2565b602080601f831160018114620005605760008415620005475750858301515b600019600386901b1c1916600185901b178555620004ec565b600085815260208120601f198616915b82811015620005915788860151825594840194600190910190840162000570565b5085821015620005b05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005d357600080fd5b81516001600160a01b0381168114620005eb57600080fd5b9392505050565b80820180821115620004275762000427620003f7565b60805160a051611deb6200065f600039600081816105a00152818161135c015281816114530152818161157001526115a401526000818161049701528181611904015281816119bd01526119f90152611deb6000f3fe60806040526004361061021e5760003560e01c806376be96f311610123578063a9059cbb116100ab578063e2f456051161006f578063e2f4560514610661578063ef586f7114610677578063f2fde38b1461068c578063f5648a4f146106ac578063f66895a3146106c157600080fd5b8063a9059cbb146105c2578063afa4f3b2146105e2578063b886311514610602578063cb96372814610621578063dd62ed3e1461064157600080fd5b80638da5cb5b116100f25780638da5cb5b1461051b57806395d89b4114610539578063a3ca847d1461054e578063a457c2d71461056e578063a8b089821461058e57600080fd5b806376be96f3146104b95780637a845ece146104cf578063864701a5146104ef5780638a8c523c1461050657600080fd5b806339509351116101a6578063599ca39711610175578063599ca3971461040457806370a082311461041a578063715018a61461045057806372ac248614610465578063735de9f71461048557600080fd5b806339509351146103935780634a74bb02146103b35780634ada218b146103cd5780635331803c146103ed57600080fd5b806318160ddd116101ed57806318160ddd146102c75780631950c218146102e657806323b872dd1461031f57806324c0f8171461033f578063313ce5671461037757600080fd5b806306fdde031461022a5780630940bbc714610255578063095ea7b3146102775780630c424284146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106d8565b60405161024c9190611a6d565b60405180910390f35b34801561026157600080fd5b50610275610270366004611abb565b61076a565b005b34801561028357600080fd5b50610297610292366004611ae9565b6107cf565b604051901515815260200161024c565b3480156102b357600080fd5b506102756102c2366004611b23565b6107e9565b3480156102d357600080fd5b506002545b60405190815260200161024c565b3480156102f257600080fd5b50610297610301366004611b5c565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561032b57600080fd5b5061029761033a366004611b79565b610845565b34801561034b57600080fd5b50600e5461035f906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b34801561038357600080fd5b506040516012815260200161024c565b34801561039f57600080fd5b506102976103ae366004611ae9565b61086b565b3480156103bf57600080fd5b50600c546102979060ff1681565b3480156103d957600080fd5b50600c546102979062010000900460ff1681565b3480156103f957600080fd5b506008546102d89081565b34801561041057600080fd5b506102d8600a5481565b34801561042657600080fd5b506102d8610435366004611b5c565b6001600160a01b031660009081526020819052604090205490565b34801561045c57600080fd5b5061027561088d565b34801561047157600080fd5b50610275610480366004611b5c565b6108a1565b34801561049157600080fd5b5061035f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c557600080fd5b506102d8600d5481565b3480156104db57600080fd5b506102756104ea366004611abb565b610958565b3480156104fb57600080fd5b506006546102d89081565b34801561051257600080fd5b50610275610a26565b34801561052757600080fd5b506005546001600160a01b031661035f565b34801561054557600080fd5b5061023f610a9e565b34801561055a57600080fd5b50610275610569366004611abb565b610aad565b34801561057a57600080fd5b50610297610589366004611ae9565b610b09565b34801561059a57600080fd5b5061035f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ce57600080fd5b506102976105dd366004611ae9565b610b8f565b3480156105ee57600080fd5b506102756105fd366004611abb565b610b9d565b34801561060e57600080fd5b50600c5461029790610100900460ff1681565b34801561062d57600080fd5b5061027561063c366004611b5c565b610c93565b34801561064d57600080fd5b506102d861065c366004611bba565b610e2a565b34801561066d57600080fd5b506102d8600b5481565b34801561068357600080fd5b50610275610e55565b34801561069857600080fd5b506102756106a7366004611b5c565b610e84565b3480156106b857600080fd5b50610275610efd565b3480156106cd57600080fd5b506007546102d89081565b6060600380546106e790611be8565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611be8565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b610772610f9d565b600781905560148111156107a15760405162461bcd60e51b815260040161079890611c22565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b6000336107dd818585610ff7565b60019150505b92915050565b6107f1610f9d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b60003361085385828561111b565b61085e858585611195565b60019150505b9392505050565b6000336107dd81858561087e8383610e2a565b6108889190611c7c565b610ff7565b610895610f9d565b61089f60006114c6565b565b6108a9610f9d565b6001600160a01b03811661090e5760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420446576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b6064820152608401610798565b600e80546001600160a01b0319166001600160a01b0383169081179091556040517f2e184dc34ab031d763441c588bd08760997797e8550c76fd439a20571233cc2090600090a250565b610960610f9d565b600181116109bb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610798565b6064811115610a215760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610798565b600a55565b610a2e610f9d565b600c5462010000900460ff1615610a875760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610798565b600c805462ff000019166201000017905543600d55565b6060600480546106e790611be8565b610ab5610f9d565b60068190556014811115610adb5760405162461bcd60e51b815260040161079890611c22565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610b178286610e2a565b905083811015610b775760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610798565b610b848286868403610ff7565b506001949350505050565b6000336107dd818585611195565b610ba5610f9d565b600081118015610bd757506103e8610bc96a084595161401484a0000006005611c8f565b610bd39190611ca6565b8111155b610c605760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610798565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610c9b610f9d565b6040516370a0823160e01b81523060048201526000906001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d109190611cc8565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f9190611ce1565b905080610dce5760405162461bcd60e51b815260206004820152601b60248201527f7472616e7366657272696e6720746f6b656e73206661696c65642100000000006044820152606401610798565b306001600160a01b03831603610e265760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610798565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e5d610f9d565b600c5460ff16610e6e576001610e71565b60005b600c805460ff1916911515919091179055565b610e8c610f9d565b6001600160a01b038116610ef15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b610efa816114c6565b50565b610f05610f9d565b604051600090339047908381818185875af1925050503d8060008114610f47576040519150601f19603f3d011682016040523d82523d6000602084013e610f4c565b606091505b5050905080610efa5760405162461bcd60e51b815260206004820152601760248201527f7472616e7366657272696e6720455448206661696c65640000000000000000006044820152606401610798565b6005546001600160a01b0316331461089f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610798565b6001600160a01b0383166110595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b6001600160a01b0382166110ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610798565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111278484610e2a565b9050600019811461118f57818110156111825760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610798565b61118f8484848403610ff7565b50505050565b6001600160a01b0383166111eb5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610798565b6001600160a01b0382166112415760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610798565b600081116112a35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610798565b60006112b0848484611518565b600b5430600090815260208181526040808320546001600160a01b038a16845260099092529091205492935010159060ff1615801561130857506001600160a01b03841660009081526009602052604090205460ff16155b156114b457600c5462010000900460ff1661135a5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610798565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316141580156113e857506064600a546a084595161401484a0000006113b29190611c8f565b6113bc9190611ca6565b826113dc866001600160a01b031660009081526020819052604090205490565b6113e69190611c7c565b115b156114475760405162461bcd60e51b815260206004820152602960248201527f57616c6c65742062616c616e63652065786365656473206d6178696d756d2070604482015268657263656e7461676560b81b6064820152608401610798565b836001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614801561148a5750600c5460ff165b80156114935750805b80156114a75750600c54610100900460ff16155b156114b4576114b461161f565b6114bf858584611709565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061155757506001600160a01b03831660009081526009602052604090205460ff165b15611563575080610864565b6008546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116908516036115a257506007546115e0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036115e057506006545b6000811561160b5760646115f48386611c8f565b6115fe9190611ca6565b905061160b863083611709565b6116158185611cfe565b9695505050505050565b600c805461ff0019166101001790553060009081526020819052604081205490508060000361164b5750565b30600090815260208190526040902054611664906118ad565b600e546040516000916001600160a01b03169047908381818185875af1925050503d80600081146116b1576040519150601f19603f3d011682016040523d82523d6000602084013e6116b6565b606091505b50509050806116fa5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610798565b5050600c805461ff0019169055565b6001600160a01b03831661176d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610798565b6001600160a01b0382166117cf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610798565b6001600160a01b038316600090815260208190526040902054818110156118475760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610798565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361118f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118e2576118e2611d11565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190611d27565b8160018151811061199757611997611d11565b60200260200101906001600160a01b031690816001600160a01b0316815250506119e2307f000000000000000000000000000000000000000000000000000000000000000084610ff7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a37908590600090869030904290600401611d44565b600060405180830381600087803b158015611a5157600080fd5b505af1158015611a65573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611a9a57858101830151858201604001528201611a7e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611acd57600080fd5b5035919050565b6001600160a01b0381168114610efa57600080fd5b60008060408385031215611afc57600080fd5b8235611b0781611ad4565b946020939093013593505050565b8015158114610efa57600080fd5b60008060408385031215611b3657600080fd5b8235611b4181611ad4565b91506020830135611b5181611b15565b809150509250929050565b600060208284031215611b6e57600080fd5b813561086481611ad4565b600080600060608486031215611b8e57600080fd5b8335611b9981611ad4565b92506020840135611ba981611ad4565b929592945050506040919091013590565b60008060408385031215611bcd57600080fd5b8235611bd881611ad4565b91506020830135611b5181611ad4565b600181811c90821680611bfc57607f821691505b602082108103611c1c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632032302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107e3576107e3611c66565b80820281158282048414176107e3576107e3611c66565b600082611cc357634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611cda57600080fd5b5051919050565b600060208284031215611cf357600080fd5b815161086481611b15565b818103818111156107e3576107e3611c66565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d3957600080fd5b815161086481611ad4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d945784516001600160a01b031683529383019391830191600101611d6f565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122063c0f0d267d57a0526cba2c144900f18b6386e21a2b010afa693627abcb4529364736f6c63430008130033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806376be96f311610123578063a9059cbb116100ab578063e2f456051161006f578063e2f4560514610661578063ef586f7114610677578063f2fde38b1461068c578063f5648a4f146106ac578063f66895a3146106c157600080fd5b8063a9059cbb146105c2578063afa4f3b2146105e2578063b886311514610602578063cb96372814610621578063dd62ed3e1461064157600080fd5b80638da5cb5b116100f25780638da5cb5b1461051b57806395d89b4114610539578063a3ca847d1461054e578063a457c2d71461056e578063a8b089821461058e57600080fd5b806376be96f3146104b95780637a845ece146104cf578063864701a5146104ef5780638a8c523c1461050657600080fd5b806339509351116101a6578063599ca39711610175578063599ca3971461040457806370a082311461041a578063715018a61461045057806372ac248614610465578063735de9f71461048557600080fd5b806339509351146103935780634a74bb02146103b35780634ada218b146103cd5780635331803c146103ed57600080fd5b806318160ddd116101ed57806318160ddd146102c75780631950c218146102e657806323b872dd1461031f57806324c0f8171461033f578063313ce5671461037757600080fd5b806306fdde031461022a5780630940bbc714610255578063095ea7b3146102775780630c424284146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106d8565b60405161024c9190611a6d565b60405180910390f35b34801561026157600080fd5b50610275610270366004611abb565b61076a565b005b34801561028357600080fd5b50610297610292366004611ae9565b6107cf565b604051901515815260200161024c565b3480156102b357600080fd5b506102756102c2366004611b23565b6107e9565b3480156102d357600080fd5b506002545b60405190815260200161024c565b3480156102f257600080fd5b50610297610301366004611b5c565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561032b57600080fd5b5061029761033a366004611b79565b610845565b34801561034b57600080fd5b50600e5461035f906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b34801561038357600080fd5b506040516012815260200161024c565b34801561039f57600080fd5b506102976103ae366004611ae9565b61086b565b3480156103bf57600080fd5b50600c546102979060ff1681565b3480156103d957600080fd5b50600c546102979062010000900460ff1681565b3480156103f957600080fd5b506008546102d89081565b34801561041057600080fd5b506102d8600a5481565b34801561042657600080fd5b506102d8610435366004611b5c565b6001600160a01b031660009081526020819052604090205490565b34801561045c57600080fd5b5061027561088d565b34801561047157600080fd5b50610275610480366004611b5c565b6108a1565b34801561049157600080fd5b5061035f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104c557600080fd5b506102d8600d5481565b3480156104db57600080fd5b506102756104ea366004611abb565b610958565b3480156104fb57600080fd5b506006546102d89081565b34801561051257600080fd5b50610275610a26565b34801561052757600080fd5b506005546001600160a01b031661035f565b34801561054557600080fd5b5061023f610a9e565b34801561055a57600080fd5b50610275610569366004611abb565b610aad565b34801561057a57600080fd5b50610297610589366004611ae9565b610b09565b34801561059a57600080fd5b5061035f7f00000000000000000000000070e5218c24bd5a6cce84327df9fbe1290d6b54bc81565b3480156105ce57600080fd5b506102976105dd366004611ae9565b610b8f565b3480156105ee57600080fd5b506102756105fd366004611abb565b610b9d565b34801561060e57600080fd5b50600c5461029790610100900460ff1681565b34801561062d57600080fd5b5061027561063c366004611b5c565b610c93565b34801561064d57600080fd5b506102d861065c366004611bba565b610e2a565b34801561066d57600080fd5b506102d8600b5481565b34801561068357600080fd5b50610275610e55565b34801561069857600080fd5b506102756106a7366004611b5c565b610e84565b3480156106b857600080fd5b50610275610efd565b3480156106cd57600080fd5b506007546102d89081565b6060600380546106e790611be8565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611be8565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b610772610f9d565b600781905560148111156107a15760405162461bcd60e51b815260040161079890611c22565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b6000336107dd818585610ff7565b60019150505b92915050565b6107f1610f9d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b60003361085385828561111b565b61085e858585611195565b60019150505b9392505050565b6000336107dd81858561087e8383610e2a565b6108889190611c7c565b610ff7565b610895610f9d565b61089f60006114c6565b565b6108a9610f9d565b6001600160a01b03811661090e5760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420446576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b6064820152608401610798565b600e80546001600160a01b0319166001600160a01b0383169081179091556040517f2e184dc34ab031d763441c588bd08760997797e8550c76fd439a20571233cc2090600090a250565b610960610f9d565b600181116109bb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610798565b6064811115610a215760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610798565b600a55565b610a2e610f9d565b600c5462010000900460ff1615610a875760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610798565b600c805462ff000019166201000017905543600d55565b6060600480546106e790611be8565b610ab5610f9d565b60068190556014811115610adb5760405162461bcd60e51b815260040161079890611c22565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610b178286610e2a565b905083811015610b775760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610798565b610b848286868403610ff7565b506001949350505050565b6000336107dd818585611195565b610ba5610f9d565b600081118015610bd757506103e8610bc96a084595161401484a0000006005611c8f565b610bd39190611ca6565b8111155b610c605760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610798565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610c9b610f9d565b6040516370a0823160e01b81523060048201526000906001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d109190611cc8565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7f9190611ce1565b905080610dce5760405162461bcd60e51b815260206004820152601b60248201527f7472616e7366657272696e6720746f6b656e73206661696c65642100000000006044820152606401610798565b306001600160a01b03831603610e265760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610798565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e5d610f9d565b600c5460ff16610e6e576001610e71565b60005b600c805460ff1916911515919091179055565b610e8c610f9d565b6001600160a01b038116610ef15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610798565b610efa816114c6565b50565b610f05610f9d565b604051600090339047908381818185875af1925050503d8060008114610f47576040519150601f19603f3d011682016040523d82523d6000602084013e610f4c565b606091505b5050905080610efa5760405162461bcd60e51b815260206004820152601760248201527f7472616e7366657272696e6720455448206661696c65640000000000000000006044820152606401610798565b6005546001600160a01b0316331461089f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610798565b6001600160a01b0383166110595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610798565b6001600160a01b0382166110ba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610798565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111278484610e2a565b9050600019811461118f57818110156111825760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610798565b61118f8484848403610ff7565b50505050565b6001600160a01b0383166111eb5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610798565b6001600160a01b0382166112415760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610798565b600081116112a35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610798565b60006112b0848484611518565b600b5430600090815260208181526040808320546001600160a01b038a16845260099092529091205492935010159060ff1615801561130857506001600160a01b03841660009081526009602052604090205460ff16155b156114b457600c5462010000900460ff1661135a5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610798565b7f00000000000000000000000070e5218c24bd5a6cce84327df9fbe1290d6b54bc6001600160a01b0316846001600160a01b0316141580156113e857506064600a546a084595161401484a0000006113b29190611c8f565b6113bc9190611ca6565b826113dc866001600160a01b031660009081526020819052604090205490565b6113e69190611c7c565b115b156114475760405162461bcd60e51b815260206004820152602960248201527f57616c6c65742062616c616e63652065786365656473206d6178696d756d2070604482015268657263656e7461676560b81b6064820152608401610798565b836001600160a01b03167f00000000000000000000000070e5218c24bd5a6cce84327df9fbe1290d6b54bc6001600160a01b031614801561148a5750600c5460ff165b80156114935750805b80156114a75750600c54610100900460ff16155b156114b4576114b461161f565b6114bf858584611709565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061155757506001600160a01b03831660009081526009602052604090205460ff165b15611563575080610864565b6008546001600160a01b037f00000000000000000000000070e5218c24bd5a6cce84327df9fbe1290d6b54bc8116908516036115a257506007546115e0565b7f00000000000000000000000070e5218c24bd5a6cce84327df9fbe1290d6b54bc6001600160a01b0316856001600160a01b0316036115e057506006545b6000811561160b5760646115f48386611c8f565b6115fe9190611ca6565b905061160b863083611709565b6116158185611cfe565b9695505050505050565b600c805461ff0019166101001790553060009081526020819052604081205490508060000361164b5750565b30600090815260208190526040902054611664906118ad565b600e546040516000916001600160a01b03169047908381818185875af1925050503d80600081146116b1576040519150601f19603f3d011682016040523d82523d6000602084013e6116b6565b606091505b50509050806116fa5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610798565b5050600c805461ff0019169055565b6001600160a01b03831661176d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610798565b6001600160a01b0382166117cf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610798565b6001600160a01b038316600090815260208190526040902054818110156118475760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610798565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361118f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118e2576118e2611d11565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190611d27565b8160018151811061199757611997611d11565b60200260200101906001600160a01b031690816001600160a01b0316815250506119e2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ff7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611a37908590600090869030904290600401611d44565b600060405180830381600087803b158015611a5157600080fd5b505af1158015611a65573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611a9a57858101830151858201604001528201611a7e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611acd57600080fd5b5035919050565b6001600160a01b0381168114610efa57600080fd5b60008060408385031215611afc57600080fd5b8235611b0781611ad4565b946020939093013593505050565b8015158114610efa57600080fd5b60008060408385031215611b3657600080fd5b8235611b4181611ad4565b91506020830135611b5181611b15565b809150509250929050565b600060208284031215611b6e57600080fd5b813561086481611ad4565b600080600060608486031215611b8e57600080fd5b8335611b9981611ad4565b92506020840135611ba981611ad4565b929592945050506040919091013590565b60008060408385031215611bcd57600080fd5b8235611bd881611ad4565b91506020830135611b5181611ad4565b600181811c90821680611bfc57607f821691505b602082108103611c1c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632032302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107e3576107e3611c66565b80820281158282048414176107e3576107e3611c66565b600082611cc357634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611cda57600080fd5b5051919050565b600060208284031215611cf357600080fd5b815161086481611b15565b818103818111156107e3576107e3611c66565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d3957600080fd5b815161086481611ad4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d945784516001600160a01b031683529383019391830191600101611d6f565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122063c0f0d267d57a0526cba2c144900f18b6386e21a2b010afa693627abcb4529364736f6c63430008130033

Deployed Bytecode Sourcemap

28630:7417:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16518:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31260:246;;;;;;;;;;-1:-1:-1;31260:246:0;;;;;:::i;:::-;;:::i;:::-;;18869:201;;;;;;;;;;-1:-1:-1;18869:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18869:201:0;1208:187:1;32303:195:0;;;;;;;;;;-1:-1:-1;32303:195:0;;;;;:::i;:::-;;:::i;17638:108::-;;;;;;;;;;-1:-1:-1;17726:12:0;;17638:108;;;2056:25:1;;;2044:2;2029:18;17638:108:0;1910:177:1;32506:116:0;;;;;;;;;;-1:-1:-1;32506:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32594:20:0;32570:4;32594:20;;;:11;:20;;;;;;;;;32506:116;19650:295;;;;;;;;;;-1:-1:-1;19650:295:0;;;;;:::i;:::-;;:::i;29490:77::-;;;;;;;;;;-1:-1:-1;29490:77:0;;;;-1:-1:-1;;;;;29490:77:0;;;;;;-1:-1:-1;;;;;2969:32:1;;;2951:51;;2939:2;2924:18;29490:77:0;2805:203:1;17480:93:0;;;;;;;;;;-1:-1:-1;17480:93:0;;17563:2;3155:36:1;;3143:2;3128:18;17480:93:0;3013:184:1;20354:238:0;;;;;;;;;;-1:-1:-1;20354:238:0;;;;;:::i;:::-;;:::i;29310:40::-;;;;;;;;;;-1:-1:-1;29310:40:0;;;;;;;;29394:33;;;;;;;;;;-1:-1:-1;29394:33:0;;;;;;;;;;;28983;;;;;;;;;;-1:-1:-1;28983:33:0;;;;;;29131:40;;;;;;;;;;;;;;;;17809:127;;;;;;;;;;-1:-1:-1;17809:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17910:18:0;17883:7;17910:18;;;;;;;;;;;;17809:127;9943:103;;;;;;;;;;;;;:::i;30490:313::-;;;;;;;;;;-1:-1:-1;30490:313:0;;;;;:::i;:::-;;:::i;28807:40::-;;;;;;;;;;;;;;;29434:32;;;;;;;;;;;;;;;;31514:267;;;;;;;;;;-1:-1:-1;31514:267:0;;;;;:::i;:::-;;:::i;28912:28::-;;;;;;;;;;-1:-1:-1;28912:28:0;;;;;;30809:192;;;;;;;;;;;;;:::i;9295:87::-;;;;;;;;;;-1:-1:-1;9368:6:0;;-1:-1:-1;;;;;9368:6:0;9295:87;;16737:104;;;;;;;;;;;;;:::i;31009:243::-;;;;;;;;;;-1:-1:-1;31009:243:0;;;;;:::i;:::-;;:::i;21095:436::-;;;;;;;;;;-1:-1:-1;21095:436:0;;;;;:::i;:::-;;:::i;28854:36::-;;;;;;;;;;;;;;;18142:193;;;;;;;;;;-1:-1:-1;18142:193:0;;;;;:::i;:::-;;:::i;31789:372::-;;;;;;;;;;-1:-1:-1;31789:372:0;;;;;:::i;:::-;;:::i;29357:30::-;;;;;;;;;;-1:-1:-1;29357:30:0;;;;;;;;;;;35631:376;;;;;;;;;;-1:-1:-1;35631:376:0;;;;;:::i;:::-;;:::i;18398:151::-;;;;;;;;;;-1:-1:-1;18398:151:0;;;;;:::i;:::-;;:::i;29196:64::-;;;;;;;;;;;;;;;;32169:126;;;;;;;;;;;;;:::i;10201:201::-;;;;;;;;;;-1:-1:-1;10201:201:0;;;;;:::i;:::-;;:::i;35402:221::-;;;;;;;;;;;;;:::i;28947:29::-;;;;;;;;;;-1:-1:-1;28947:29:0;;;;;;16518:100;16572:13;16605:5;16598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16518:100;:::o;31260:246::-;9181:13;:11;:13::i;:::-;31335:9:::1;:38:::0;;;31409:2:::1;31392:19:::0;::::1;;31384:68;;;;-1:-1:-1::0;;;31384:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31468:30;::::0;31484:13;;31468:30:::1;::::0;;;::::1;31260:246:::0;:::o;18869:201::-;18952:4;7926:10;19008:32;7926:10;19024:7;19033:6;19008:8;:32::i;:::-;19058:4;19051:11;;;18869:201;;;;;:::o;32303:195::-;9181:13;:11;:13::i;:::-;-1:-1:-1;;;;;32417:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;32417:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32463:27;;32417:30;;:20;32463:27:::1;::::0;::::1;32303:195:::0;;:::o;19650:295::-;19781:4;7926:10;19839:38;19855:4;7926:10;19870:6;19839:15;:38::i;:::-;19888:27;19898:4;19904:2;19908:6;19888:9;:27::i;:::-;19933:4;19926:11;;;19650:295;;;;;;:::o;20354:238::-;20442:4;7926:10;20498:64;7926:10;20514:7;20551:10;20523:25;7926:10;20514:7;20523:9;:25::i;:::-;:38;;;;:::i;:::-;20498:8;:64::i;9943:103::-;9181:13;:11;:13::i;:::-;10008:30:::1;10035:1;10008:18;:30::i;:::-;9943:103::o:0;30490:313::-;9181:13;:11;:13::i;:::-;-1:-1:-1;;;;;30597:29:0;::::1;30575:117;;;::::0;-1:-1:-1;;;30575:117:0;;5075:2:1;30575:117:0::1;::::0;::::1;5057:21:1::0;5114:2;5094:18;;;5087:30;5153:34;5133:18;;;5126:62;-1:-1:-1;;;5204:18:1;;;5197:36;5250:19;;30575:117:0::1;4873:402:1::0;30575:117:0::1;30703:17;:35:::0;;-1:-1:-1;;;;;;30703:35:0::1;-1:-1:-1::0;;;;;30703:35:0;::::1;::::0;;::::1;::::0;;;30754:41:::1;::::0;::::1;::::0;-1:-1:-1;;30754:41:0::1;30490:313:::0;:::o;31514:267::-;9181:13;:11;:13::i;:::-;31615:1:::1;31601:11;:15;31593:62;;;::::0;-1:-1:-1;;;31593:62:0;;5482:2:1;31593:62:0::1;::::0;::::1;5464:21:1::0;5521:2;5501:18;;;5494:30;5560:34;5540:18;;;5533:62;-1:-1:-1;;;5611:18:1;;;5604:32;5653:19;;31593:62:0::1;5280:398:1::0;31593:62:0::1;31685:3;31670:11;:18;;31662:75;;;::::0;-1:-1:-1;;;31662:75:0;;5885:2:1;31662:75:0::1;::::0;::::1;5867:21:1::0;5924:2;5904:18;;;5897:30;5963:34;5943:18;;;5936:62;-1:-1:-1;;;6014:18:1;;;6007:42;6066:19;;31662:75:0::1;5683:408:1::0;31662:75:0::1;31744:19;:33:::0;31514:267::o;30809:192::-;9181:13;:11;:13::i;:::-;30873:14:::1;::::0;;;::::1;;;30872:15;30864:54;;;::::0;-1:-1:-1;;;30864:54:0;;6298:2:1;30864:54:0::1;::::0;::::1;6280:21:1::0;6337:2;6317:18;;;6310:30;6376:28;6356:18;;;6349:56;6422:18;;30864:54:0::1;6096:350:1::0;30864:54:0::1;30929:14;:21:::0;;-1:-1:-1;;30929:21:0::1;::::0;::::1;::::0;;30981:12:::1;30961:17;:32:::0;30809:192::o;16737:104::-;16793:13;16826:7;16819:14;;;;;:::i;31009:243::-;9181:13;:11;:13::i;:::-;31083:8:::1;:37:::0;;;31156:2:::1;31139:19:::0;::::1;;31131:68;;;;-1:-1:-1::0;;;31131:68:0::1;;;;;;;:::i;:::-;31215:29;::::0;31230:13;;31215:29:::1;::::0;;;::::1;31009:243:::0;:::o;21095:436::-;21188:4;7926:10;21188:4;21271:25;7926:10;21288:7;21271:9;:25::i;:::-;21244:52;;21335:15;21315:16;:35;;21307:85;;;;-1:-1:-1;;;21307:85:0;;6653:2:1;21307:85:0;;;6635:21:1;6692:2;6672:18;;;6665:30;6731:34;6711:18;;;6704:62;-1:-1:-1;;;6782:18:1;;;6775:35;6827:19;;21307:85:0;6451:401:1;21307:85:0;21428:60;21437:5;21444:7;21472:15;21453:16;:34;21428:8;:60::i;:::-;-1:-1:-1;21519:4:0;;21095:436;-1:-1:-1;;;;21095:436:0:o;18142:193::-;18221:4;7926:10;18277:28;7926:10;18294:2;18298:6;18277:9;:28::i;31789:372::-;9181:13;:11;:13::i;:::-;31905:1:::1;31892:10;:14;:57;;;;-1:-1:-1::0;31945:4:0::1;31925:16;28769:15;31940:1;31925:16;:::i;:::-;31924:25;;;;:::i;:::-;31910:10;:39;;31892:57;31870:185;;;::::0;-1:-1:-1;;;31870:185:0;;7454:2:1;31870:185:0::1;::::0;::::1;7436:21:1::0;7493:2;7473:18;;;7466:30;7532:34;7512:18;;;7505:62;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:19:1;;;7647:45;7709:19;;31870:185:0::1;7252:482:1::0;31870:185:0::1;32066:18;:31:::0;;;32113:40:::1;::::0;32087:10;;32113:40:::1;::::0;;;::::1;31789:372:::0;:::o;35631:376::-;9181:13;:11;:13::i;:::-;35794:44:::1;::::0;-1:-1:-1;;;35794:44:0;;35832:4:::1;35794:44;::::0;::::1;2951:51:1::0;35711:12:0::1;::::0;-1:-1:-1;;;;;35726:28:0;::::1;::::0;::::1;::::0;35769:10:::1;::::0;35726:28;;35794:29:::1;::::0;2924:18:1;;35794:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35726:123;::::0;-1:-1:-1;;;;;;35726:123:0::1;::::0;;;;;;-1:-1:-1;;;;;8120:32:1;;;35726:123:0::1;::::0;::::1;8102:51:1::0;8169:18;;;8162:34;8075:18;;35726:123:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35711:138;;35868:7;35860:47;;;::::0;-1:-1:-1;;;35860:47:0;;8659:2:1;35860:47:0::1;::::0;::::1;8641:21:1::0;8698:2;8678:18;;;8671:30;8737:29;8717:18;;;8710:57;8784:18;;35860:47:0::1;8457:351:1::0;35860:47:0::1;35949:4;-1:-1:-1::0;;;;;35926:28:0;::::1;::::0;35918:73:::1;;;::::0;-1:-1:-1;;;35918:73:0;;9015:2:1;35918:73:0::1;::::0;::::1;8997:21:1::0;;;9034:18;;;9027:30;9093:34;9073:18;;;9066:62;9145:18;;35918:73:0::1;8813:356:1::0;35918:73:0::1;35700:307;35631:376:::0;:::o;18398:151::-;-1:-1:-1;;;;;18514:18:0;;;18487:7;18514:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18398:151::o;32169:126::-;9181:13;:11;:13::i;:::-;32250:21:::1;::::0;::::1;;32249:38;;32283:4;32249:38;;;32275:5;32249:38;32225:21;:62:::0;;-1:-1:-1;;32225:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32169:126::o;10201:201::-;9181:13;:11;:13::i;:::-;-1:-1:-1;;;;;10290:22:0;::::1;10282:73;;;::::0;-1:-1:-1;;;10282:73:0;;9376:2:1;10282:73:0::1;::::0;::::1;9358:21:1::0;9415:2;9395:18;;;9388:30;9454:34;9434:18;;;9427:62;-1:-1:-1;;;9505:18:1;;;9498:36;9551:19;;10282:73:0::1;9174:402:1::0;10282:73:0::1;10366:28;10385:8;10366:18;:28::i;:::-;10201:201:::0;:::o;35402:221::-;9181:13;:11;:13::i;:::-;35479:82:::1;::::0;35461:12:::1;::::0;35487:10:::1;::::0;35525:21:::1;::::0;35461:12;35479:82;35461:12;35479:82;35525:21;35487:10;35479:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35460:101;;;35580:7;35572:43;;;::::0;-1:-1:-1;;;35572:43:0;;9993:2:1;35572:43:0::1;::::0;::::1;9975:21:1::0;10032:2;10012:18;;;10005:30;10071:25;10051:18;;;10044:53;10114:18;;35572:43:0::1;9791:347:1::0;9460:132:0;9368:6;;-1:-1:-1;;;;;9368:6:0;7926:10;9524:23;9516:68;;;;-1:-1:-1;;;9516:68:0;;10345:2:1;9516:68:0;;;10327:21:1;;;10364:18;;;10357:30;10423:34;10403:18;;;10396:62;10475:18;;9516:68:0;10143:356:1;25122:380:0;-1:-1:-1;;;;;25258:19:0;;25250:68;;;;-1:-1:-1;;;25250:68:0;;10706:2:1;25250:68:0;;;10688:21:1;10745:2;10725:18;;;10718:30;10784:34;10764:18;;;10757:62;-1:-1:-1;;;10835:18:1;;;10828:34;10879:19;;25250:68:0;10504:400:1;25250:68:0;-1:-1:-1;;;;;25337:21:0;;25329:68;;;;-1:-1:-1;;;25329:68:0;;11111:2:1;25329:68:0;;;11093:21:1;11150:2;11130:18;;;11123:30;11189:34;11169:18;;;11162:62;-1:-1:-1;;;11240:18:1;;;11233:32;11282:19;;25329:68:0;10909:398:1;25329:68:0;-1:-1:-1;;;;;25410:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25462:32;;2056:25:1;;;25462:32:0;;2029:18:1;25462:32:0;;;;;;;25122:380;;;:::o;25793:453::-;25928:24;25955:25;25965:5;25972:7;25955:9;:25::i;:::-;25928:52;;-1:-1:-1;;25995:16:0;:37;25991:248;;26077:6;26057:16;:26;;26049:68;;;;-1:-1:-1;;;26049:68:0;;11514:2:1;26049:68:0;;;11496:21:1;11553:2;11533:18;;;11526:30;11592:31;11572:18;;;11565:59;11641:18;;26049:68:0;11312:353:1;26049:68:0;26161:51;26170:5;26177:7;26205:6;26186:16;:25;26161:8;:51::i;:::-;25917:329;25793:453;;;:::o;33449:1087::-;-1:-1:-1;;;;;33572:19:0;;33564:58;;;;-1:-1:-1;;;33564:58:0;;11872:2:1;33564:58:0;;;11854:21:1;11911:2;11891:18;;;11884:30;11950:28;11930:18;;;11923:56;11996:18;;33564:58:0;11670:350:1;33564:58:0;-1:-1:-1;;;;;33637:17:0;;33629:54;;;;-1:-1:-1;;;33629:54:0;;12227:2:1;33629:54:0;;;12209:21:1;12266:2;12246:18;;;12239:30;12305:26;12285:18;;;12278:54;12349:18;;33629:54:0;12025:348:1;33629:54:0;33708:1;33698:7;:11;33690:65;;;;-1:-1:-1;;;33690:65:0;;12580:2:1;33690:65:0;;;12562:21:1;12619:2;12599:18;;;12592:30;12658:34;12638:18;;;12631:62;-1:-1:-1;;;12709:18:1;;;12702:39;12758:19;;33690:65:0;12378:405:1;33690:65:0;33762:18;33783:29;33792:5;33799:3;33804:7;33783:8;:29::i;:::-;33864:18;;33854:4;33821:12;17910:18;;;;;;;;;;;;-1:-1:-1;;;;;33904:18:0;;;;:11;:18;;;;;;;33762:50;;-1:-1:-1;;33836:46:0;;33904:18;;33903:19;:49;;;;-1:-1:-1;;;;;;33936:16:0;;;;;;:11;:16;;;;;;;;33935:17;33903:49;33889:598;;;33979:14;;;;;;;33971:45;;;;-1:-1:-1;;;33971:45:0;;12990:2:1;33971:45:0;;;12972:21:1;13029:2;13009:18;;;13002:30;-1:-1:-1;;;13048:18:1;;;13041:48;13106:18;;33971:45:0;12788:342:1;33971:45:0;34122:11;-1:-1:-1;;;;;34115:18:0;:3;-1:-1:-1;;;;;34115:18:0;;;:94;;;;;34206:3;34183:19;;28769:15;34168:34;;;;:::i;:::-;34167:42;;;;:::i;:::-;34154:10;34137:14;34147:3;-1:-1:-1;;;;;17910:18:0;17883:7;17910:18;;;;;;;;;;;;17809:127;34137:14;:27;;;;:::i;:::-;:72;34115:94;34111:178;;;34226:51;;-1:-1:-1;;;34226:51:0;;13337:2:1;34226:51:0;;;13319:21:1;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:1;;;13459:39;13515:19;;34226:51:0;13135:405:1;34111:178:0;34334:3;-1:-1:-1;;;;;34319:18:0;:11;-1:-1:-1;;;;;34319:18:0;;:56;;;;-1:-1:-1;34354:21:0;;;;34319:56;:80;;;;;34392:7;34319:80;:108;;;;-1:-1:-1;34417:10:0;;;;;;;34416:11;34319:108;34301:179;;;34454:14;:12;:14::i;:::-;34493:39;34509:5;34516:3;34521:10;34493:15;:39::i;:::-;33557:979;;33449:1087;;;:::o;10562:191::-;10655:6;;;-1:-1:-1;;;;;10672:17:0;;;-1:-1:-1;;;;;;10672:17:0;;;;;;;10705:40;;10655:6;;;10672:17;10655:6;;10705:40;;10636:16;;10705:40;10625:128;10562:191;:::o;32770:675::-;-1:-1:-1;;;;;32909:18:0;;32885:7;32909:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32931:16:0;;;;;;:11;:16;;;;;;;;32909:38;32905:85;;;-1:-1:-1;32971:7:0;32964:14;;32905:85;33019:13;:26;-1:-1:-1;;;;;33069:11:0;33062:18;;;;;;33058:175;;-1:-1:-1;33108:9:0;:22;33058:175;;;33161:11;-1:-1:-1;;;;;33152:20:0;:5;-1:-1:-1;;;;;33152:20:0;;33148:85;;-1:-1:-1;33200:8:0;:21;33148:85;33245:11;33275:12;;33271:134;;33333:3;33311:18;33321:8;33311:7;:18;:::i;:::-;33310:26;;;;:::i;:::-;33304:32;;33351:42;33367:5;33382:4;33389:3;33351:15;:42::i;:::-;33423:13;33433:3;33423:7;:13;:::i;:::-;33415:22;32770:675;-1:-1:-1;;;;;;32770:675:0:o;34544:395::-;34588:10;:17;;-1:-1:-1;;34588:17:0;;;;;34654:4;-1:-1:-1;17910:18:0;;;;;;;;;;;34616:44;;34676:9;34689:1;34676:14;34672:53;;34707:7;34544:395::o;34672:53::-;34763:4;17883:7;17910:18;;;;;;;;;;;34735:35;;:9;:35::i;:::-;34799:17;;:56;;34781:12;;-1:-1:-1;;;;;34799:17:0;;34829:21;;34781:12;34799:56;34781:12;34799:56;34829:21;34799:17;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34780:75;;;34874:7;34866:36;;;;-1:-1:-1;;;34866:36:0;;13880:2:1;34866:36:0;;;13862:21:1;13919:2;13899:18;;;13892:30;-1:-1:-1;;;13938:18:1;;;13931:46;13994:18;;34866:36:0;13678:340:1;34866:36:0;-1:-1:-1;;34913:10:0;:18;;-1:-1:-1;;34913:18:0;;;34544:395::o;22001:840::-;-1:-1:-1;;;;;22132:18:0;;22124:68;;;;-1:-1:-1;;;22124:68:0;;14225:2:1;22124:68:0;;;14207:21:1;14264:2;14244:18;;;14237:30;14303:34;14283:18;;;14276:62;-1:-1:-1;;;14354:18:1;;;14347:35;14399:19;;22124:68:0;14023:401:1;22124:68:0;-1:-1:-1;;;;;22211:16:0;;22203:64;;;;-1:-1:-1;;;22203:64:0;;14631:2:1;22203:64:0;;;14613:21:1;14670:2;14650:18;;;14643:30;14709:34;14689:18;;;14682:62;-1:-1:-1;;;14760:18:1;;;14753:33;14803:19;;22203:64:0;14429:399:1;22203:64:0;-1:-1:-1;;;;;22353:15:0;;22331:19;22353:15;;;;;;;;;;;22387:21;;;;22379:72;;;;-1:-1:-1;;;22379:72:0;;15035:2:1;22379:72:0;;;15017:21:1;15074:2;15054:18;;;15047:30;15113:34;15093:18;;;15086:62;-1:-1:-1;;;15164:18:1;;;15157:36;15210:19;;22379:72:0;14833:402:1;22379:72:0;-1:-1:-1;;;;;22487:15:0;;;:9;:15;;;;;;;;;;;22505:20;;;22487:38;;22705:13;;;;;;;;;;:23;;;;;;22757:26;;2056:25:1;;;22705:13:0;;22757:26;;2029:18:1;22757:26:0;;;;;;;22796:37;26846:125;34947:447;35027:16;;;35041:1;35027:16;;;;;;;;35003:21;;35027:16;;;;;;;;;;-1:-1:-1;35027:16:0;35003:40;;35072:4;35054;35059:1;35054:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35054:23:0;;;-1:-1:-1;;;;;35054:23:0;;;;;35098:13;-1:-1:-1;;;;;35098:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35088:4;35093:1;35088:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;35088:30:0;;;-1:-1:-1;;;;;35088:30:0;;;;;35129:56;35146:4;35161:13;35177:7;35129:8;:56::i;:::-;35196:190;;-1:-1:-1;;;35196:190:0;;-1:-1:-1;;;;;35196:13:0;:64;;;;:190;;35275:7;;35297:1;;35313:4;;35340;;35360:15;;35196:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34992:402;34947:447;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:118::-;1486:5;1479:13;1472:21;1465:5;1462:32;1452:60;;1508:1;1505;1498:12;1523:382;1588:6;1596;1649:2;1637:9;1628:7;1624:23;1620:32;1617:52;;;1665:1;1662;1655:12;1617:52;1704:9;1691:23;1723:31;1748:5;1723:31;:::i;:::-;1773:5;-1:-1:-1;1830:2:1;1815:18;;1802:32;1843:30;1802:32;1843:30;:::i;:::-;1892:7;1882:17;;;1523:382;;;;;:::o;2092:247::-;2151:6;2204:2;2192:9;2183:7;2179:23;2175:32;2172:52;;;2220:1;2217;2210:12;2172:52;2259:9;2246:23;2278:31;2303:5;2278:31;:::i;2344:456::-;2421:6;2429;2437;2490:2;2478:9;2469:7;2465:23;2461:32;2458:52;;;2506:1;2503;2496:12;2458:52;2545:9;2532:23;2564:31;2589:5;2564:31;:::i;:::-;2614:5;-1:-1:-1;2671:2:1;2656:18;;2643:32;2684:33;2643:32;2684:33;:::i;:::-;2344:456;;2736:7;;-1:-1:-1;;;2790:2:1;2775:18;;;;2762:32;;2344:456::o;3428:388::-;3496:6;3504;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;3612:9;3599:23;3631:31;3656:5;3631:31;:::i;:::-;3681:5;-1:-1:-1;3738:2:1;3723:18;;3710:32;3751:33;3710:32;3751:33;:::i;3821:380::-;3900:1;3896:12;;;;3943;;;3964:61;;4018:4;4010:6;4006:17;3996:27;;3964:61;4071:2;4063:6;4060:14;4040:18;4037:38;4034:161;;4117:10;4112:3;4108:20;4105:1;4098:31;4152:4;4149:1;4142:15;4180:4;4177:1;4170:15;4034:161;;3821:380;;;:::o;4206:400::-;4408:2;4390:21;;;4447:2;4427:18;;;4420:30;4486:34;4481:2;4466:18;;4459:62;-1:-1:-1;;;4552:2:1;4537:18;;4530:34;4596:3;4581:19;;4206:400::o;4611:127::-;4672:10;4667:3;4663:20;4660:1;4653:31;4703:4;4700:1;4693:15;4727:4;4724:1;4717:15;4743:125;4808:9;;;4829:10;;;4826:36;;;4842:18;;:::i;6857:168::-;6930:9;;;6961;;6978:15;;;6972:22;;6958:37;6948:71;;6999:18;;:::i;7030:217::-;7070:1;7096;7086:132;;7140:10;7135:3;7131:20;7128:1;7121:31;7175:4;7172:1;7165:15;7203:4;7200:1;7193:15;7086:132;-1:-1:-1;7232:9:1;;7030:217::o;7739:184::-;7809:6;7862:2;7850:9;7841:7;7837:23;7833:32;7830:52;;;7878:1;7875;7868:12;7830:52;-1:-1:-1;7901:16:1;;7739:184;-1:-1:-1;7739:184:1:o;8207:245::-;8274:6;8327:2;8315:9;8306:7;8302:23;8298:32;8295:52;;;8343:1;8340;8333:12;8295:52;8375:9;8369:16;8394:28;8416:5;8394:28;:::i;13545:128::-;13612:9;;;13633:11;;;13630:37;;;13647:18;;:::i;15372:127::-;15433:10;15428:3;15424:20;15421:1;15414:31;15464:4;15461:1;15454:15;15488:4;15485:1;15478:15;15504:251;15574:6;15627:2;15615:9;15606:7;15602:23;15598:32;15595:52;;;15643:1;15640;15633:12;15595:52;15675:9;15669:16;15694:31;15719:5;15694:31;:::i;15760:980::-;16022:4;16070:3;16059:9;16055:19;16101:6;16090:9;16083:25;16127:2;16165:6;16160:2;16149:9;16145:18;16138:34;16208:3;16203:2;16192:9;16188:18;16181:31;16232:6;16267;16261:13;16298:6;16290;16283:22;16336:3;16325:9;16321:19;16314:26;;16375:2;16367:6;16363:15;16349:29;;16396:1;16406:195;16420:6;16417:1;16414:13;16406:195;;;16485:13;;-1:-1:-1;;;;;16481:39:1;16469:52;;16576:15;;;;16541:12;;;;16517:1;16435:9;16406:195;;;-1:-1:-1;;;;;;;16657:32:1;;;;16652:2;16637:18;;16630:60;-1:-1:-1;;;16721:3:1;16706:19;16699:35;16618:3;15760:980;-1:-1:-1;;;15760:980:1:o

Swarm Source

ipfs://63c0f0d267d57a0526cba2c144900f18b6386e21a2b010afa693627abcb45293
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.