ETH Price: $3,161.45 (-5.26%)
Gas: 8 Gwei

Token

Duplicate (DUPE)
 

Overview

Max Total Supply

100,000,000 DUPE

Holders

267

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
84,291.32383840913428412 DUPE

Value
$0.00
0xa7858231b01e8e8b7295a243634cc39e1e4ea477
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:
Duplicate

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-07-30
*/

/*
https://twitter.com/duplicate
https://t.me/DuplicateToken
https://duplicate-token.gitbook.io/duplicate
https://www.duplicatetoken.io/
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

/**
 * @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;
    }
}

/**
 * @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)


/**
 * @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)

/**
 * @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 {}
}

contract Ownable is Context {
    address public _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        authorizations[_owner] = true;
        emit OwnershipTransferred(address(0), msgSender);
    }
    mapping (address => bool) internal authorizations;

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    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.
     */
    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.
     */
    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.
     */
    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.
     */
    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 largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        if (_status == _ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

contract Duplicate is Ownable, ERC20, ReentrancyGuard {
    error TradingClosed();
    error TransactionTooLarge();
    error MaxBalanceExceeded();
    error PercentOutOfRange();
    error NotExternalToken();
    error TransferFailed();
    error UnknownCaller();

    bool public tradingOpen;
    bool private _inSwap;

    address public marketingFeeReceiver;
    uint256 public maxTxAmount;
    uint256 public maxWalletBalance;
    mapping(address => bool) public _authorizations;
    mapping(address => bool) public _feeExemptions;

    address public migrationContract;

    address private constant _ROUTER =
        0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private immutable _factory;
    address public immutable uniswapV2Pair;

    uint256 public swapThreshold;
    uint256 public sellTax;
    uint256 public buyTax;

    modifier swapping() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    address private originAddr;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _tokenSupply,
        uint8 _maxWalletPercent,
        uint8 _maxTxPercent,
        uint8 _buyTax,
        uint8 _sellTax
    ) ERC20(_name, _symbol) {
        // Adjust token supply for 18 decimals
        uint256 supply = _tokenSupply * 1 ether;

        swapThreshold = Math.mulDiv(supply, 25, 1000); // 0.25%
        marketingFeeReceiver = msg.sender;
        buyTax = _buyTax;
        sellTax = _sellTax;

        // Calculate max wallet balance and transaction amount
        maxWalletBalance = Math.mulDiv(supply, _maxWalletPercent, 100);
        maxTxAmount = Math.mulDiv(supply, _maxTxPercent, 100);

        // Create UniswapV2Pair
        IUniswapV2Router02 router = IUniswapV2Router02(_ROUTER);
        address pair = IUniswapV2Factory(router.factory()).createPair(
            router.WETH(),
            address(this)
        );
        uniswapV2Pair = pair;

        originAddr = msg.sender;

        _authorizations[msg.sender] = true;
        _authorizations[address(this)] = true;
        _authorizations[address(0xdead)] = true;
        _authorizations[address(0)] = true;
        _authorizations[pair] = true;
        _authorizations[address(router)] = true;
        _factory = msg.sender;

        _feeExemptions[msg.sender] = true;
        _feeExemptions[address(this)] = true;

        _approve(msg.sender, _ROUTER, type(uint256).max);
        _approve(msg.sender, pair, type(uint256).max);
        _approve(address(this), _ROUTER, type(uint256).max);
        _approve(address(this), pair, type(uint256).max);

        _mint(msg.sender, supply);
    }

    function setMaxWalletAndTxPercent(
        uint256 _maxWalletPercent,
        uint256 _maxTxPercent
    ) external onlyOwner {
        if (_maxWalletPercent == 0 || _maxWalletPercent > 100) {
            revert PercentOutOfRange();
        }
        if (_maxTxPercent == 0 || _maxTxPercent > 100) {
            revert PercentOutOfRange();
        }
        uint256 supply = totalSupply();

        maxWalletBalance = Math.mulDiv(supply, _maxWalletPercent, 100);
        maxTxAmount = Math.mulDiv(supply, _maxTxPercent, 100);
    }

    function setExemptFromMaxTx(address addr, bool value) public {
        if (msg.sender != originAddr && owner() != msg.sender) {
            revert UnknownCaller();
        }
        _authorizations[addr] = value;
    }

    function setExemptFromFee(address addr, bool value) public {
        if (msg.sender != originAddr && owner() != msg.sender) {
            revert UnknownCaller();
        }
        _feeExemptions[addr] = value;
    }

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal override {
        if (_shouldSwapBack()) {
            _swapBack();
        }
        if (_inSwap) {
            return super._transfer(_from, _to, _amount);
        }

        uint256 fee = (_feeExemptions[_from] || _feeExemptions[_to])
            ? 0
            : _calculateFee(_from, _to, _amount);

        if (fee != 0) {
            super._transfer(_from, address(this), fee);
            _amount -= fee;
        }

        super._transfer(_from, _to, _amount);
    }

    function _swapBack() internal swapping nonReentrant {
        IUniswapV2Router02 router = IUniswapV2Router02(_ROUTER);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balanceOf(address(this)),
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 balance = address(this).balance;

        (bool success, ) = payable(marketingFeeReceiver).call{value: balance}(
            ""
        );
        if (!success) {
            revert TransferFailed();
        }
    }

    function _calculateFee(
        address sender,
        address recipient,
        uint256 amount
    ) internal view returns (uint256) {
        if (recipient == uniswapV2Pair) {
            return Math.mulDiv(amount, sellTax, 100);
        } else if (sender == uniswapV2Pair) {
            return Math.mulDiv(amount, buyTax, 100);
        }

        return (0);
    }

    function _shouldSwapBack() internal view returns (bool) {
        return
            msg.sender != uniswapV2Pair &&
            !_inSwap &&
            balanceOf(address(this)) >= swapThreshold;
    }

    function clearStuckToken(
        address tokenAddress,
        uint256 tokens
    ) external returns (bool success) {
        if (tokenAddress == address(this)) {
            revert NotExternalToken();
        } else {
            if (tokens == 0) {
                tokens = ERC20(tokenAddress).balanceOf(address(this));
                return
                    ERC20(tokenAddress).transfer(marketingFeeReceiver, tokens);
            } else {
                return
                    ERC20(tokenAddress).transfer(marketingFeeReceiver, tokens);
            }
        }
    }

    function setTaxes(uint256 _buyTax, uint256 _sellTax) external onlyOwner {
        if (sellTax >= 100) {
            revert PercentOutOfRange();
        }
        if (buyTax >= 100) {
            revert PercentOutOfRange();
        }

        sellTax = _sellTax;
        buyTax = _buyTax;
    }

    function openTrading() public onlyOwner {
        tradingOpen = true;
    }

    function setMarketingWallet(
        address _marketingFeeReceiver
    ) external onlyOwner {
        marketingFeeReceiver = _marketingFeeReceiver;
    }

    function setSwapBackSettings(uint256 _amount) public {
        if (msg.sender != originAddr && owner() != msg.sender) {
            revert UnknownCaller();
        }
        uint256 total = totalSupply();
        uint newAmount = _amount * 1 ether;
        require(
            newAmount >= total / 1000 && newAmount <= total / 20,
            "The amount should be between 0.1% and 5% of total supply"
        );
        swapThreshold = newAmount;
    }

    function isAuthorized(address addr) public view returns (bool) {
        return _authorizations[addr];
    }

    function setMigrationContract(address _contract) public onlyOwner {
        migrationContract = _contract;
        _feeExemptions[_contract] = true;
        _authorizations[_contract] = true;
    }

    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal view override {
        // Check if trading is open, if not, block all transfers except from authorized parties (owner by default)
        if (!tradingOpen) {
            if (!_authorizations[_from] || !_authorizations[_to]) {
                if (_from != migrationContract && _to != migrationContract) {
                    revert TradingClosed();
                }
            }
        }
        // Confirm the recipient cannot receive over the max wallet balance
        if (!_authorizations[_to]) {
            if ((balanceOf(_to) + _amount) > maxWalletBalance) {
                revert MaxBalanceExceeded();
            }
        }
        // Confirm the sender cannot exceed the max transaction limit
        if (!_authorizations[_from]) {
            if (_amount > maxTxAmount) {
                revert TransactionTooLarge();
            }
        }
    }

    receive() external payable {}

    fallback() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_tokenSupply","type":"uint256"},{"internalType":"uint8","name":"_maxWalletPercent","type":"uint8"},{"internalType":"uint8","name":"_maxTxPercent","type":"uint8"},{"internalType":"uint8","name":"_buyTax","type":"uint8"},{"internalType":"uint8","name":"_sellTax","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"inputs":[],"name":"MaxBalanceExceeded","type":"error"},{"inputs":[],"name":"NotExternalToken","type":"error"},{"inputs":[],"name":"PercentOutOfRange","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"TradingClosed","type":"error"},{"inputs":[],"name":"TransactionTooLarge","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"UnknownCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_authorizations","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeExemptions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrationContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExemptFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExemptFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingFeeReceiver","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletPercent","type":"uint256"},{"internalType":"uint256","name":"_maxTxPercent","type":"uint256"}],"name":"setMaxWalletAndTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setMigrationContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b50604051620028913803806200289183398101604081905262000034916200090f565b600080546001600160a01b031916339081178255808252600160208190526040808420805460ff19169092179091555189928992918291907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506005620000a0838262000a5b565b506006620000af828262000a5b565b50506001600755506000620000cd86670de0b6b3a764000062000b3d565b9050620000df8160196103e86200040b565b600e556008805462010000600160b01b03191633620100000217905560ff838116601055828116600f556200011a908290871660646200040b565b600a556200012e8160ff861660646200040b565b6009819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b4919062000b5d565b6001600160a01b031663c9c65396836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000201573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000227919062000b5d565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af115801562000274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029a919062000b5d565b6001600160a01b0380821660a0819052601180546001600160a01b031916339081179091556000818152600b60209081526040808320805460ff1990811660019081179092553080865283862080548316841790557f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac341580548316841790557fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7680548316841790559685528285208054821683179055968a16845281842080548816821790556080859052848452600c90925280832080548716831790559382529290208054909316909117909155909150620003ae90737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004da565b620003bd3382600019620004da565b620003e030737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004da565b620003ef3082600019620004da565b620003fb338462000606565b5050505050505050505062000bb4565b60008080600019858709858702925082811083820303915050806000036200044a578382816200043f576200043f62000b88565b0492505050620004d3565b8084116200046b5760405163227bc15360e01b815260040160405180910390fd5b600084868809851960019081018716968790049682860381900495909211909303600082900391909104909201919091029190911760038402600290811880860282030280860282030280860282030280860282030280860282030280860290910302029150505b9392505050565b6001600160a01b038316620005425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000539565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166200065e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000539565b6200066c60008383620006d9565b806004600082825462000680919062000b9e565b90915550506001600160a01b0382166000818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60085460ff1662000778576001600160a01b0383166000908152600b602052604090205460ff1615806200072657506001600160a01b0382166000908152600b602052604090205460ff16155b156200077857600d546001600160a01b03848116911614801590620007595750600d546001600160a01b03838116911614155b15620007785760405163e2c865df60e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff16620007e957600a5481620007bd846001600160a01b031660009081526002602052604090205490565b620007c9919062000b9e565b1115620007e9576040516324691f6b60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff166200082e576009548111156200082e5760405163973ec46f60e01b815260040160405180910390fd5b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200085b57600080fd5b81516001600160401b038082111562000878576200087862000833565b604051601f8301601f19908116603f01168101908282118183101715620008a357620008a362000833565b81604052838152602092508683858801011115620008c057600080fd5b600091505b83821015620008e45785820183015181830184015290820190620008c5565b600093810190920192909252949350505050565b805160ff811681146200090a57600080fd5b919050565b600080600080600080600060e0888a0312156200092b57600080fd5b87516001600160401b03808211156200094357600080fd5b620009518b838c0162000849565b985060208a01519150808211156200096857600080fd5b50620009778a828b0162000849565b965050604088015194506200098f60608901620008f8565b93506200099f60808901620008f8565b9250620009af60a08901620008f8565b9150620009bf60c08901620008f8565b905092959891949750929550565b600181811c90821680620009e257607f821691505b60208210810362000a0357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200082e57600081815260208120601f850160051c8101602086101562000a325750805b601f850160051c820191505b8181101562000a535782815560010162000a3e565b505050505050565b81516001600160401b0381111562000a775762000a7762000833565b62000a8f8162000a888454620009cd565b8462000a09565b602080601f83116001811462000ac7576000841562000aae5750858301515b600019600386901b1c1916600185901b17855562000a53565b600085815260208120601f198616915b8281101562000af85788860151825594840194600190910190840162000ad7565b508582101562000b175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000b575762000b5762000b27565b92915050565b60006020828403121562000b7057600080fd5b81516001600160a01b0381168114620004d357600080fd5b634e487b7160e01b600052601260045260246000fd5b8082018082111562000b575762000b5762000b27565b60805160a051611ca562000bec6000396000818161036a015281816112b0015281816116eb0152611739015260005050611ca56000f3fe6080604052600436106101fb5760003560e01c806388b79cec1161010c578063c647b20e1161009a578063e7cb12201161006c578063e7cb1220146105f7578063e96fada214610627578063f2fde38b1461064d578063fe9fbb801461066d578063ffb54a99146106a657005b8063c647b20e1461058c578063c9567bf9146105ac578063cc1776d3146105c1578063dd62ed3e146105d757005b8063a457c2d7116100de578063a457c2d7146104f6578063a9059cbb14610516578063b2bdfa7b14610536578063bbde77c114610556578063bedafd011461056c57005b806388b79cec1461048d5780638c0b5e22146104ad5780638da5cb5b146104c357806395d89b41146104e157005b806349bd5a5e1161018957806370a082311161015b57806370a08231146103e2578063715018a61461041857806377b54bad1461042d578063796431d01461044d578063844866041461046d57005b806349bd5a5e146103585780634ab7cb581461038c5780634f7041a5146103ac5780635d098b38146103c257005b806318160ddd116101cd57806318160ddd146102b757806323b872dd146102cc578063313ce567146102ec57806339509351146103085780634852aacb1461032857005b80630445b6671461020457806306fdde031461022d578063095ea7b31461024f5780630fee1a201461027f57005b3661020257005b005b34801561021057600080fd5b5061021a600e5481565b6040519081526020015b60405180910390f35b34801561023957600080fd5b506102426106c0565b60405161022491906118fb565b34801561025b57600080fd5b5061026f61026a366004611961565b610752565b6040519015158152602001610224565b34801561028b57600080fd5b50600d5461029f906001600160a01b031681565b6040516001600160a01b039091168152602001610224565b3480156102c357600080fd5b5060045461021a565b3480156102d857600080fd5b5061026f6102e736600461198d565b61076c565b3480156102f857600080fd5b5060405160128152602001610224565b34801561031457600080fd5b5061026f610323366004611961565b610792565b34801561033457600080fd5b5061026f6103433660046119ce565b600c6020526000908152604090205460ff1681565b34801561036457600080fd5b5061029f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561039857600080fd5b506102026103a73660046119eb565b6107b4565b3480156103b857600080fd5b5061021a60105481565b3480156103ce57600080fd5b506102026103dd3660046119ce565b61086d565b3480156103ee57600080fd5b5061021a6103fd3660046119ce565b6001600160a01b031660009081526002602052604090205490565b34801561042457600080fd5b506102026108c1565b34801561043957600080fd5b5061026f610448366004611961565b610935565b34801561045957600080fd5b50610202610468366004611a0d565b610a96565b34801561047957600080fd5b50610202610488366004611a34565b610baa565b34801561049957600080fd5b506102026104a83660046119ce565b610c28565b3480156104b957600080fd5b5061021a60095481565b3480156104cf57600080fd5b506000546001600160a01b031661029f565b3480156104ed57600080fd5b50610242610ca5565b34801561050257600080fd5b5061026f610511366004611961565b610cb4565b34801561052257600080fd5b5061026f610531366004611961565b610d3a565b34801561054257600080fd5b5060005461029f906001600160a01b031681565b34801561056257600080fd5b5061021a600a5481565b34801561057857600080fd5b50610202610587366004611a34565b610d48565b34801561059857600080fd5b506102026105a73660046119eb565b610dc6565b3480156105b857600080fd5b50610202610e3e565b3480156105cd57600080fd5b5061021a600f5481565b3480156105e357600080fd5b5061021a6105f2366004611a6d565b610e77565b34801561060357600080fd5b5061026f6106123660046119ce565b600b6020526000908152604090205460ff1681565b34801561063357600080fd5b5060085461029f906201000090046001600160a01b031681565b34801561065957600080fd5b506102026106683660046119ce565b610ea2565b34801561067957600080fd5b5061026f6106883660046119ce565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156106b257600080fd5b5060085461026f9060ff1681565b6060600580546106cf90611a9b565b80601f01602080910402602001604051908101604052809291908181526020018280546106fb90611a9b565b80156107485780601f1061071d57610100808354040283529160200191610748565b820191906000526020600020905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b600033610760818585610f8c565b60019150505b92915050565b60003361077a8582856110b0565b61078585858561112a565b60019150505b9392505050565b6000336107608185856107a58383610e77565b6107af9190611aeb565b610f8c565b6000546001600160a01b031633146107e75760405162461bcd60e51b81526004016107de90611afe565b60405180910390fd5b8115806107f45750606482115b1561081257604051636ac4115560e11b815260040160405180910390fd5b80158061081f5750606481115b1561083d57604051636ac4115560e11b815260040160405180910390fd5b600061084860045490565b9050610856818460646111e0565b600a55610865818360646111e0565b600955505050565b6000546001600160a01b031633146108975760405162461bcd60e51b81526004016107de90611afe565b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000546001600160a01b031633146108eb5760405162461bcd60e51b81526004016107de90611afe565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000306001600160a01b03841603610960576040516334131c8560e01b815260040160405180910390fd5b81600003610a57576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156109ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d09190611b33565b60085460405163a9059cbb60e01b81526001600160a01b0362010000909204821660048201526024810183905291935084169063a9059cbb906044015b6020604051808303816000875af1158015610a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a509190611b4c565b9050610766565b60085460405163a9059cbb60e01b8152620100009091046001600160a01b0390811660048301526024820184905284169063a9059cbb90604401610a0d565b6011546001600160a01b03163314801590610acb575033610abf6000546001600160a01b031690565b6001600160a01b031614155b15610ae9576040516308bf227d60e21b815260040160405180910390fd5b6000610af460045490565b90506000610b0a83670de0b6b3a7640000611b69565b9050610b186103e883611b96565b8110158015610b315750610b2d601483611b96565b8111155b610ba35760405162461bcd60e51b815260206004820152603860248201527f54686520616d6f756e742073686f756c64206265206265747765656e20302e3160448201527f2520616e64203525206f6620746f74616c20737570706c79000000000000000060648201526084016107de565b600e555050565b6011546001600160a01b03163314801590610bdf575033610bd36000546001600160a01b031690565b6001600160a01b031614155b15610bfd576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610c525760405162461bcd60e51b81526004016107de90611afe565b600d80546001600160a01b039092166001600160a01b0319909216821790556000908152600c60209081526040808320805460ff199081166001908117909255600b909352922080549091169091179055565b6060600680546106cf90611a9b565b60003381610cc28286610e77565b905083811015610d225760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107de565b610d2f8286868403610f8c565b506001949350505050565b60003361076081858561112a565b6011546001600160a01b03163314801590610d7d575033610d716000546001600160a01b031690565b6001600160a01b031614155b15610d9b576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610df05760405162461bcd60e51b81526004016107de90611afe565b6064600f5410610e1357604051636ac4115560e11b815260040160405180910390fd5b606460105410610e3657604051636ac4115560e11b815260040160405180910390fd5b600f55601055565b6000546001600160a01b03163314610e685760405162461bcd60e51b81526004016107de90611afe565b6008805460ff19166001179055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610ecc5760405162461bcd60e51b81526004016107de90611afe565b6001600160a01b038116610f315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107de565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107de565b6001600160a01b03821661104f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107de565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110bc8484610e77565b9050600019811461112457818110156111175760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107de565b6111248484848403610f8c565b50505050565b6111326112a3565b1561113f5761113f611308565b600854610100900460ff161561115f5761115a838383611531565b505050565b6001600160a01b0383166000908152600c602052604081205460ff168061119e57506001600160a01b0383166000908152600c602052604090205460ff165b6111b2576111ad8484846116e7565b6111b5565b60005b905080156111d5576111c8843083611531565b6111d28183611bb8565b91505b611124848484611531565b600080806000198587098587029250828110838203039150508060000361121a5783828161121057611210611b80565b049250505061078b565b80841161123a5760405163227bc15360e01b815260040160405180910390fd5b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015906112e65750600854610100900460ff16155b80156113035750600e543060009081526002602052604090205410155b905090565b6008805461ff00191661010017905561131f611788565b604080516002808252606082018352737a250d5630b4cf539739df2c5dacb4c659f2488d926000929190602083019080368337019050509050308160008151811061136c5761136c611bcb565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ee9190611be1565b8160018151811061140157611401611bcb565b6001600160a01b039283166020918202929092010152821663791ac94761143d306001600160a01b031660009081526002602052604090205490565b60008430426040518663ffffffff1660e01b8152600401611462959493929190611bfe565b600060405180830381600087803b15801561147c57600080fd5b505af1158015611490573d6000803e3d6000fd5b505060085460405147935060009250620100009091046001600160a01b031690839060006040518083038185875af1925050503d80600081146114ef576040519150601f19603f3d011682016040523d82523d6000602084013e6114f4565b606091505b5050905080611516576040516312171d8360e31b815260040160405180910390fd5b505050506115246001600755565b6008805461ff0019169055565b6001600160a01b0383166115955760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107de565b6001600160a01b0382166115f75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107de565b6116028383836117b2565b6001600160a01b0383166000908152600260205260409020548181101561167a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107de565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116da9086815260200190565b60405180910390a3611124565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316036117375761173082600f5460646111e0565b905061078b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361177e576117308260105460646111e0565b5060009392505050565b6002600754036117ab57604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b60085460ff1661184c576001600160a01b0383166000908152600b602052604090205460ff1615806117fd57506001600160a01b0382166000908152600b602052604090205460ff16155b1561184c57600d546001600160a01b0384811691161480159061182e5750600d546001600160a01b03838116911614155b1561184c5760405163e2c865df60e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff166118b857600a548161188f846001600160a01b031660009081526002602052604090205490565b6118999190611aeb565b11156118b8576040516324691f6b60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff1661115a5760095481111561115a5760405163973ec46f60e01b815260040160405180910390fd5b600060208083528351808285015260005b818110156119285785810183015185820160400152820161190c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461195e57600080fd5b50565b6000806040838503121561197457600080fd5b823561197f81611949565b946020939093013593505050565b6000806000606084860312156119a257600080fd5b83356119ad81611949565b925060208401356119bd81611949565b929592945050506040919091013590565b6000602082840312156119e057600080fd5b813561078b81611949565b600080604083850312156119fe57600080fd5b50508035926020909101359150565b600060208284031215611a1f57600080fd5b5035919050565b801515811461195e57600080fd5b60008060408385031215611a4757600080fd5b8235611a5281611949565b91506020830135611a6281611a26565b809150509250929050565b60008060408385031215611a8057600080fd5b8235611a8b81611949565b91506020830135611a6281611949565b600181811c90821680611aaf57607f821691505b602082108103611acf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561076657610766611ad5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b4557600080fd5b5051919050565b600060208284031215611b5e57600080fd5b815161078b81611a26565b808202811582820484141761076657610766611ad5565b634e487b7160e01b600052601260045260246000fd5b600082611bb357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561076657610766611ad5565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611bf357600080fd5b815161078b81611949565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c4e5784516001600160a01b031683529383019391830191600101611c29565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c3ef4a99ad042c85f573a3c36bfb263197ad7b4df4aac225ba12bf74c92a17f164736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000002d00000000000000000000000000000000000000000000000000000000000000094475706c6963617465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044455504500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101fb5760003560e01c806388b79cec1161010c578063c647b20e1161009a578063e7cb12201161006c578063e7cb1220146105f7578063e96fada214610627578063f2fde38b1461064d578063fe9fbb801461066d578063ffb54a99146106a657005b8063c647b20e1461058c578063c9567bf9146105ac578063cc1776d3146105c1578063dd62ed3e146105d757005b8063a457c2d7116100de578063a457c2d7146104f6578063a9059cbb14610516578063b2bdfa7b14610536578063bbde77c114610556578063bedafd011461056c57005b806388b79cec1461048d5780638c0b5e22146104ad5780638da5cb5b146104c357806395d89b41146104e157005b806349bd5a5e1161018957806370a082311161015b57806370a08231146103e2578063715018a61461041857806377b54bad1461042d578063796431d01461044d578063844866041461046d57005b806349bd5a5e146103585780634ab7cb581461038c5780634f7041a5146103ac5780635d098b38146103c257005b806318160ddd116101cd57806318160ddd146102b757806323b872dd146102cc578063313ce567146102ec57806339509351146103085780634852aacb1461032857005b80630445b6671461020457806306fdde031461022d578063095ea7b31461024f5780630fee1a201461027f57005b3661020257005b005b34801561021057600080fd5b5061021a600e5481565b6040519081526020015b60405180910390f35b34801561023957600080fd5b506102426106c0565b60405161022491906118fb565b34801561025b57600080fd5b5061026f61026a366004611961565b610752565b6040519015158152602001610224565b34801561028b57600080fd5b50600d5461029f906001600160a01b031681565b6040516001600160a01b039091168152602001610224565b3480156102c357600080fd5b5060045461021a565b3480156102d857600080fd5b5061026f6102e736600461198d565b61076c565b3480156102f857600080fd5b5060405160128152602001610224565b34801561031457600080fd5b5061026f610323366004611961565b610792565b34801561033457600080fd5b5061026f6103433660046119ce565b600c6020526000908152604090205460ff1681565b34801561036457600080fd5b5061029f7f000000000000000000000000ac82345e8c83199a6d9ada9e81def789fcb9cd8681565b34801561039857600080fd5b506102026103a73660046119eb565b6107b4565b3480156103b857600080fd5b5061021a60105481565b3480156103ce57600080fd5b506102026103dd3660046119ce565b61086d565b3480156103ee57600080fd5b5061021a6103fd3660046119ce565b6001600160a01b031660009081526002602052604090205490565b34801561042457600080fd5b506102026108c1565b34801561043957600080fd5b5061026f610448366004611961565b610935565b34801561045957600080fd5b50610202610468366004611a0d565b610a96565b34801561047957600080fd5b50610202610488366004611a34565b610baa565b34801561049957600080fd5b506102026104a83660046119ce565b610c28565b3480156104b957600080fd5b5061021a60095481565b3480156104cf57600080fd5b506000546001600160a01b031661029f565b3480156104ed57600080fd5b50610242610ca5565b34801561050257600080fd5b5061026f610511366004611961565b610cb4565b34801561052257600080fd5b5061026f610531366004611961565b610d3a565b34801561054257600080fd5b5060005461029f906001600160a01b031681565b34801561056257600080fd5b5061021a600a5481565b34801561057857600080fd5b50610202610587366004611a34565b610d48565b34801561059857600080fd5b506102026105a73660046119eb565b610dc6565b3480156105b857600080fd5b50610202610e3e565b3480156105cd57600080fd5b5061021a600f5481565b3480156105e357600080fd5b5061021a6105f2366004611a6d565b610e77565b34801561060357600080fd5b5061026f6106123660046119ce565b600b6020526000908152604090205460ff1681565b34801561063357600080fd5b5060085461029f906201000090046001600160a01b031681565b34801561065957600080fd5b506102026106683660046119ce565b610ea2565b34801561067957600080fd5b5061026f6106883660046119ce565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156106b257600080fd5b5060085461026f9060ff1681565b6060600580546106cf90611a9b565b80601f01602080910402602001604051908101604052809291908181526020018280546106fb90611a9b565b80156107485780601f1061071d57610100808354040283529160200191610748565b820191906000526020600020905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b600033610760818585610f8c565b60019150505b92915050565b60003361077a8582856110b0565b61078585858561112a565b60019150505b9392505050565b6000336107608185856107a58383610e77565b6107af9190611aeb565b610f8c565b6000546001600160a01b031633146107e75760405162461bcd60e51b81526004016107de90611afe565b60405180910390fd5b8115806107f45750606482115b1561081257604051636ac4115560e11b815260040160405180910390fd5b80158061081f5750606481115b1561083d57604051636ac4115560e11b815260040160405180910390fd5b600061084860045490565b9050610856818460646111e0565b600a55610865818360646111e0565b600955505050565b6000546001600160a01b031633146108975760405162461bcd60e51b81526004016107de90611afe565b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000546001600160a01b031633146108eb5760405162461bcd60e51b81526004016107de90611afe565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000306001600160a01b03841603610960576040516334131c8560e01b815260040160405180910390fd5b81600003610a57576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa1580156109ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d09190611b33565b60085460405163a9059cbb60e01b81526001600160a01b0362010000909204821660048201526024810183905291935084169063a9059cbb906044015b6020604051808303816000875af1158015610a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a509190611b4c565b9050610766565b60085460405163a9059cbb60e01b8152620100009091046001600160a01b0390811660048301526024820184905284169063a9059cbb90604401610a0d565b6011546001600160a01b03163314801590610acb575033610abf6000546001600160a01b031690565b6001600160a01b031614155b15610ae9576040516308bf227d60e21b815260040160405180910390fd5b6000610af460045490565b90506000610b0a83670de0b6b3a7640000611b69565b9050610b186103e883611b96565b8110158015610b315750610b2d601483611b96565b8111155b610ba35760405162461bcd60e51b815260206004820152603860248201527f54686520616d6f756e742073686f756c64206265206265747765656e20302e3160448201527f2520616e64203525206f6620746f74616c20737570706c79000000000000000060648201526084016107de565b600e555050565b6011546001600160a01b03163314801590610bdf575033610bd36000546001600160a01b031690565b6001600160a01b031614155b15610bfd576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610c525760405162461bcd60e51b81526004016107de90611afe565b600d80546001600160a01b039092166001600160a01b0319909216821790556000908152600c60209081526040808320805460ff199081166001908117909255600b909352922080549091169091179055565b6060600680546106cf90611a9b565b60003381610cc28286610e77565b905083811015610d225760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107de565b610d2f8286868403610f8c565b506001949350505050565b60003361076081858561112a565b6011546001600160a01b03163314801590610d7d575033610d716000546001600160a01b031690565b6001600160a01b031614155b15610d9b576040516308bf227d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610df05760405162461bcd60e51b81526004016107de90611afe565b6064600f5410610e1357604051636ac4115560e11b815260040160405180910390fd5b606460105410610e3657604051636ac4115560e11b815260040160405180910390fd5b600f55601055565b6000546001600160a01b03163314610e685760405162461bcd60e51b81526004016107de90611afe565b6008805460ff19166001179055565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610ecc5760405162461bcd60e51b81526004016107de90611afe565b6001600160a01b038116610f315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107de565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610fee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107de565b6001600160a01b03821661104f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107de565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110bc8484610e77565b9050600019811461112457818110156111175760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107de565b6111248484848403610f8c565b50505050565b6111326112a3565b1561113f5761113f611308565b600854610100900460ff161561115f5761115a838383611531565b505050565b6001600160a01b0383166000908152600c602052604081205460ff168061119e57506001600160a01b0383166000908152600c602052604090205460ff165b6111b2576111ad8484846116e7565b6111b5565b60005b905080156111d5576111c8843083611531565b6111d28183611bb8565b91505b611124848484611531565b600080806000198587098587029250828110838203039150508060000361121a5783828161121057611210611b80565b049250505061078b565b80841161123a5760405163227bc15360e01b815260040160405180910390fd5b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b6000336001600160a01b037f000000000000000000000000ac82345e8c83199a6d9ada9e81def789fcb9cd8616148015906112e65750600854610100900460ff16155b80156113035750600e543060009081526002602052604090205410155b905090565b6008805461ff00191661010017905561131f611788565b604080516002808252606082018352737a250d5630b4cf539739df2c5dacb4c659f2488d926000929190602083019080368337019050509050308160008151811061136c5761136c611bcb565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ee9190611be1565b8160018151811061140157611401611bcb565b6001600160a01b039283166020918202929092010152821663791ac94761143d306001600160a01b031660009081526002602052604090205490565b60008430426040518663ffffffff1660e01b8152600401611462959493929190611bfe565b600060405180830381600087803b15801561147c57600080fd5b505af1158015611490573d6000803e3d6000fd5b505060085460405147935060009250620100009091046001600160a01b031690839060006040518083038185875af1925050503d80600081146114ef576040519150601f19603f3d011682016040523d82523d6000602084013e6114f4565b606091505b5050905080611516576040516312171d8360e31b815260040160405180910390fd5b505050506115246001600755565b6008805461ff0019169055565b6001600160a01b0383166115955760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107de565b6001600160a01b0382166115f75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107de565b6116028383836117b2565b6001600160a01b0383166000908152600260205260409020548181101561167a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107de565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116da9086815260200190565b60405180910390a3611124565b60007f000000000000000000000000ac82345e8c83199a6d9ada9e81def789fcb9cd866001600160a01b0316836001600160a01b0316036117375761173082600f5460646111e0565b905061078b565b7f000000000000000000000000ac82345e8c83199a6d9ada9e81def789fcb9cd866001600160a01b0316846001600160a01b03160361177e576117308260105460646111e0565b5060009392505050565b6002600754036117ab57604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b60085460ff1661184c576001600160a01b0383166000908152600b602052604090205460ff1615806117fd57506001600160a01b0382166000908152600b602052604090205460ff16155b1561184c57600d546001600160a01b0384811691161480159061182e5750600d546001600160a01b03838116911614155b1561184c5760405163e2c865df60e01b815260040160405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff166118b857600a548161188f846001600160a01b031660009081526002602052604090205490565b6118999190611aeb565b11156118b8576040516324691f6b60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600b602052604090205460ff1661115a5760095481111561115a5760405163973ec46f60e01b815260040160405180910390fd5b600060208083528351808285015260005b818110156119285785810183015185820160400152820161190c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461195e57600080fd5b50565b6000806040838503121561197457600080fd5b823561197f81611949565b946020939093013593505050565b6000806000606084860312156119a257600080fd5b83356119ad81611949565b925060208401356119bd81611949565b929592945050506040919091013590565b6000602082840312156119e057600080fd5b813561078b81611949565b600080604083850312156119fe57600080fd5b50508035926020909101359150565b600060208284031215611a1f57600080fd5b5035919050565b801515811461195e57600080fd5b60008060408385031215611a4757600080fd5b8235611a5281611949565b91506020830135611a6281611a26565b809150509250929050565b60008060408385031215611a8057600080fd5b8235611a8b81611949565b91506020830135611a6281611949565b600181811c90821680611aaf57607f821691505b602082108103611acf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561076657610766611ad5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611b4557600080fd5b5051919050565b600060208284031215611b5e57600080fd5b815161078b81611a26565b808202811582820484141761076657610766611ad5565b634e487b7160e01b600052601260045260246000fd5b600082611bb357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561076657610766611ad5565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611bf357600080fd5b815161078b81611949565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c4e5784516001600160a01b031683529383019391830191600101611c29565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c3ef4a99ad042c85f573a3c36bfb263197ad7b4df4aac225ba12bf74c92a17f164736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000002d00000000000000000000000000000000000000000000000000000000000000094475706c6963617465000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044455504500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Duplicate
Arg [1] : _symbol (string): DUPE
Arg [2] : _tokenSupply (uint256): 100000000
Arg [3] : _maxWalletPercent (uint8): 3
Arg [4] : _maxTxPercent (uint8): 3
Arg [5] : _buyTax (uint8): 35
Arg [6] : _sellTax (uint8): 45

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4475706c69636174650000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 4455504500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37084:8694:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37865:28;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;37865:28:0;;;;;;;;6496:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8847:201::-;;;;;;;;;;-1:-1:-1;8847:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;8847:201:0;1205:187:1;37643:32:0;;;;;;;;;;-1:-1:-1;37643:32:0;;;;-1:-1:-1;;;;;37643:32:0;;;;;;-1:-1:-1;;;;;1561:32:1;;;1543:51;;1531:2;1516:18;37643:32:0;1397:203:1;7616:108:0;;;;;;;;;;-1:-1:-1;7704:12:0;;7616:108;;9628:295;;;;;;;;;;-1:-1:-1;9628:295:0;;;;;:::i;:::-;;:::i;7458:93::-;;;;;;;;;;-1:-1:-1;7458:93:0;;7541:2;2208:36:1;;2196:2;2181:18;7458:93:0;2066:184:1;10332:238:0;;;;;;;;;;-1:-1:-1;10332:238:0;;;;;:::i;:::-;;:::i;37588:46::-;;;;;;;;;;-1:-1:-1;37588:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37818:38;;;;;;;;;;;;;;;39811:544;;;;;;;;;;-1:-1:-1;39811:544:0;;;;;:::i;:::-;;:::i;37929:21::-;;;;;;;;;;;;;;;;43733:157;;;;;;;;;;-1:-1:-1;43733:157:0;;;;;:::i;:::-;;:::i;7787:127::-;;;;;;;;;;-1:-1:-1;7787:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7888:18:0;7861:7;7888:18;;;:9;:18;;;;;;;7787:127;18313:148;;;;;;;;;;;;;:::i;42735:594::-;;;;;;;;;;-1:-1:-1;42735:594:0;;;;;:::i;:::-;;:::i;43898:465::-;;;;;;;;;;-1:-1:-1;43898:465:0;;;;;:::i;:::-;;:::i;40363:223::-;;;;;;;;;;-1:-1:-1;40363:223:0;;;;;:::i;:::-;;:::i;44489:201::-;;;;;;;;;;-1:-1:-1;44489:201:0;;;;;:::i;:::-;;:::i;37463:26::-;;;;;;;;;;;;;;;;18099:79;;;;;;;;;;-1:-1:-1;18137:7:0;18164:6;-1:-1:-1;;;;;18164:6:0;18099:79;;6715:104;;;;;;;;;;;;;:::i;11073:436::-;;;;;;;;;;-1:-1:-1;11073:436:0;;;;;:::i;:::-;;:::i;8120:193::-;;;;;;;;;;-1:-1:-1;8120:193:0;;;;;:::i;:::-;;:::i;17719:21::-;;;;;;;;;;-1:-1:-1;17719:21:0;;;;-1:-1:-1;;;;;17719:21:0;;;37496:31;;;;;;;;;;;;;;;;40594:220;;;;;;;;;;-1:-1:-1;40594:220:0;;;;;:::i;:::-;;:::i;43337:303::-;;;;;;;;;;-1:-1:-1;43337:303:0;;;;;:::i;:::-;;:::i;43648:77::-;;;;;;;;;;;;;:::i;37900:22::-;;;;;;;;;;;;;;;;8376:151;;;;;;;;;;-1:-1:-1;8376:151:0;;;;;:::i;:::-;;:::i;37534:47::-;;;;;;;;;;-1:-1:-1;37534:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37421:35;;;;;;;;;;-1:-1:-1;37421:35:0;;;;;;;-1:-1:-1;;;;;37421:35:0;;;18469:244;;;;;;;;;;-1:-1:-1;18469:244:0;;;;;:::i;:::-;;:::i;44371:110::-;;;;;;;;;;-1:-1:-1;44371:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;44452:21:0;44428:4;44452:21;;;:15;:21;;;;;;;;;44371:110;37362:23;;;;;;;;;;-1:-1:-1;37362:23:0;;;;;;;;6496:100;6550:13;6583:5;6576:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6496:100;:::o;8847:201::-;8930:4;828:10;8986:32;828:10;9002:7;9011:6;8986:8;:32::i;:::-;9036:4;9029:11;;;8847:201;;;;;:::o;9628:295::-;9759:4;828:10;9817:38;9833:4;828:10;9848:6;9817:15;:38::i;:::-;9866:27;9876:4;9882:2;9886:6;9866:9;:27::i;:::-;9911:4;9904:11;;;9628:295;;;;;;:::o;10332:238::-;10420:4;828:10;10476:64;828:10;10492:7;10529:10;10501:25;828:10;10492:7;10501:9;:25::i;:::-;:38;;;;:::i;:::-;10476:8;:64::i;39811:544::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;;;;;;;;;39954:22;;;:49:::1;;;40000:3;39980:17;:23;39954:49;39950:108;;;40027:19;;-1:-1:-1::0;;;40027:19:0::1;;;;;;;;;;;39950:108;40072:18:::0;;;:41:::1;;;40110:3;40094:13;:19;40072:41;40068:100;;;40137:19;;-1:-1:-1::0;;;40137:19:0::1;;;;;;;;;;;40068:100;40178:14;40195:13;7704:12:::0;;;7616:108;40195:13:::1;40178:30;;40240:43;40252:6;40260:17;40279:3;40240:11;:43::i;:::-;40221:16;:62:::0;40308:39:::1;40320:6:::0;40328:13;40343:3:::1;40308:11;:39::i;:::-;40294:11;:53:::0;-1:-1:-1;;;39811:544:0:o;43733:157::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;43838:20:::1;:44:::0;;-1:-1:-1;;;;;43838:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;43838:44:0;;::::1;::::0;;;::::1;::::0;;43733:157::o;18313:148::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;18420:1:::1;18404:6:::0;;18383:40:::1;::::0;-1:-1:-1;;;;;18404:6:0;;::::1;::::0;18383:40:::1;::::0;18420:1;;18383:40:::1;18451:1;18434:19:::0;;-1:-1:-1;;;;;;18434:19:0::1;::::0;;18313:148::o;42735:594::-;42841:12;42894:4;-1:-1:-1;;;;;42870:29:0;;;42866:456;;42923:18;;-1:-1:-1;;;42923:18:0;;;;;;;;;;;42866:456;42978:6;42988:1;42978:11;42974:337;;43019:44;;-1:-1:-1;;;43019:44:0;;43057:4;43019:44;;;1543:51:1;-1:-1:-1;;;;;43019:29:0;;;;;1516:18:1;;43019:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43139:20;;43110:58;;-1:-1:-1;;;43110:58:0;;-1:-1:-1;;;;;43139:20:0;;;;;;43110:58;;;5219:51:1;5286:18;;;5279:34;;;;;-1:-1:-1;43110:28:0;;;;;5192:18:1;;43110:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43082:86;;;;42974:337;43266:20;;43237:58;;-1:-1:-1;;;43237:58:0;;43266:20;;;;-1:-1:-1;;;;;43266:20:0;;;43237:58;;;5219:51:1;5286:18;;;5279:34;;;43237:28:0;;;;;5192:18:1;;43237:58:0;5045:274:1;43898:465:0;43980:10;;-1:-1:-1;;;;;43980:10:0;43966;:24;;;;:49;;-1:-1:-1;44005:10:0;43994:7;18137;18164:6;-1:-1:-1;;;;;18164:6:0;;18099:79;43994:7;-1:-1:-1;;;;;43994:21:0;;;43966:49;43962:104;;;44039:15;;-1:-1:-1;;;44039:15:0;;;;;;;;;;;43962:104;44076:13;44092;7704:12;;;7616:108;44092:13;44076:29;-1:-1:-1;44116:14:0;44133:17;:7;44143;44133:17;:::i;:::-;44116:34;-1:-1:-1;44196:12:0;44204:4;44196:5;:12;:::i;:::-;44183:9;:25;;:52;;;;-1:-1:-1;44225:10:0;44233:2;44225:5;:10;:::i;:::-;44212:9;:23;;44183:52;44161:158;;;;-1:-1:-1;;;44161:158:0;;6303:2:1;44161:158:0;;;6285:21:1;6342:2;6322:18;;;6315:30;6381:34;6361:18;;;6354:62;6452:26;6432:18;;;6425:54;6496:19;;44161:158:0;6101:420:1;44161:158:0;44330:13;:25;-1:-1:-1;;43898:465:0:o;40363:223::-;40453:10;;-1:-1:-1;;;;;40453:10:0;40439;:24;;;;:49;;-1:-1:-1;40478:10:0;40467:7;18137;18164:6;-1:-1:-1;;;;;18164:6:0;;18099:79;40467:7;-1:-1:-1;;;;;40467:21:0;;;40439:49;40435:104;;;40512:15;;-1:-1:-1;;;40512:15:0;;;;;;;;;;;40435:104;-1:-1:-1;;;;;40549:21:0;;;;;;;;:15;:21;;;;;:29;;-1:-1:-1;;40549:29:0;;;;;;;;;;40363:223::o;44489:201::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;44566:17:::1;:29:::0;;-1:-1:-1;;;;;44566:29:0;;::::1;-1:-1:-1::0;;;;;;44566:29:0;;::::1;::::0;::::1;::::0;;:17:::1;44606:25:::0;;;:14:::1;:25;::::0;;;;;;;:32;;-1:-1:-1;;44606:32:0;;::::1;44566:29:::0;44606:32;;::::1;::::0;;;44649:15:::1;:26:::0;;;;;:33;;;;::::1;::::0;;::::1;::::0;;44489:201::o;6715:104::-;6771:13;6804:7;6797:14;;;;;:::i;11073:436::-;11166:4;828:10;11166:4;11249:25;828:10;11266:7;11249:9;:25::i;:::-;11222:52;;11313:15;11293:16;:35;;11285:85;;;;-1:-1:-1;;;11285:85:0;;6728:2:1;11285:85:0;;;6710:21:1;6767:2;6747:18;;;6740:30;6806:34;6786:18;;;6779:62;-1:-1:-1;;;6857:18:1;;;6850:35;6902:19;;11285:85:0;6526:401:1;11285:85:0;11406:60;11415:5;11422:7;11450:15;11431:16;:34;11406:8;:60::i;:::-;-1:-1:-1;11497:4:0;;11073:436;-1:-1:-1;;;;11073:436:0:o;8120:193::-;8199:4;828:10;8255:28;828:10;8272:2;8276:6;8255:9;:28::i;40594:220::-;40682:10;;-1:-1:-1;;;;;40682:10:0;40668;:24;;;;:49;;-1:-1:-1;40707:10:0;40696:7;18137;18164:6;-1:-1:-1;;;;;18164:6:0;;18099:79;40696:7;-1:-1:-1;;;;;40696:21:0;;;40668:49;40664:104;;;40741:15;;-1:-1:-1;;;40741:15:0;;;;;;;;;;;40664:104;-1:-1:-1;;;;;40778:20:0;;;;;;;;:14;:20;;;;;:28;;-1:-1:-1;;40778:28:0;;;;;;;;;;40594:220::o;43337:303::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;43435:3:::1;43424:7;;:14;43420:73;;43462:19;;-1:-1:-1::0;;;43462:19:0::1;;;;;;;;;;;43420:73;43517:3;43507:6;;:13;43503:72;;43544:19;;-1:-1:-1::0;;;43544:19:0::1;;;;;;;;;;;43503:72;43587:7;:18:::0;43616:6:::1;:16:::0;43337:303::o;43648:77::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;43699:11:::1;:18:::0;;-1:-1:-1;;43699:18:0::1;43713:4;43699:18;::::0;;43648:77::o;8376:151::-;-1:-1:-1;;;;;8492:18:0;;;8465:7;8492:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8376:151::o;18469:244::-;18226:6;;-1:-1:-1;;;;;18226:6:0;828:10;18226:22;18218:67;;;;-1:-1:-1;;;18218:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18558:22:0;::::1;18550:73;;;::::0;-1:-1:-1;;;18550:73:0;;7134:2:1;18550:73:0::1;::::0;::::1;7116:21:1::0;7173:2;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;-1:-1:-1;;;7263:18:1;;;7256:36;7309:19;;18550:73:0::1;6932:402:1::0;18550:73:0::1;18660:6;::::0;;18639:38:::1;::::0;-1:-1:-1;;;;;18639:38:0;;::::1;::::0;18660:6;::::1;::::0;18639:38:::1;::::0;::::1;18688:6;:17:::0;;-1:-1:-1;;;;;;18688:17:0::1;-1:-1:-1::0;;;;;18688:17:0;;;::::1;::::0;;;::::1;::::0;;18469:244::o;15100:380::-;-1:-1:-1;;;;;15236:19:0;;15228:68;;;;-1:-1:-1;;;15228:68:0;;7541:2:1;15228:68:0;;;7523:21:1;7580:2;7560:18;;;7553:30;7619:34;7599:18;;;7592:62;-1:-1:-1;;;7670:18:1;;;7663:34;7714:19;;15228:68:0;7339:400:1;15228:68:0;-1:-1:-1;;;;;15315:21:0;;15307:68;;;;-1:-1:-1;;;15307:68:0;;7946:2:1;15307:68:0;;;7928:21:1;7985:2;7965:18;;;7958:30;8024:34;8004:18;;;7997:62;-1:-1:-1;;;8075:18:1;;;8068:32;8117:19;;15307:68:0;7744:398:1;15307:68:0;-1:-1:-1;;;;;15388:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15440:32;;160:25:1;;;15440:32:0;;133:18:1;15440:32:0;;;;;;;15100:380;;;:::o;15771:453::-;15906:24;15933:25;15943:5;15950:7;15933:9;:25::i;:::-;15906:52;;-1:-1:-1;;15973:16:0;:37;15969:248;;16055:6;16035:16;:26;;16027:68;;;;-1:-1:-1;;;16027:68:0;;8349:2:1;16027:68:0;;;8331:21:1;8388:2;8368:18;;;8361:30;8427:31;8407:18;;;8400:59;8476:18;;16027:68:0;8147:353:1;16027:68:0;16139:51;16148:5;16155:7;16183:6;16164:16;:25;16139:8;:51::i;:::-;15895:329;15771:453;;;:::o;40822:601::-;40953:17;:15;:17::i;:::-;40949:61;;;40987:11;:9;:11::i;:::-;41024:7;;;;;;;41020:83;;;41055:36;41071:5;41078:3;41083:7;41055:15;:36::i;:::-;40822:601;;;:::o;41020:83::-;-1:-1:-1;;;;;41130:21:0;;41115:11;41130:21;;;:14;:21;;;;;;;;;:44;;-1:-1:-1;;;;;;41155:19:0;;;;;;:14;:19;;;;;;;;41130:44;41129:113;;41208:34;41222:5;41229:3;41234:7;41208:13;:34::i;:::-;41129:113;;;41191:1;41129:113;41115:127;-1:-1:-1;41259:8:0;;41255:112;;41284:42;41300:5;41315:4;41322:3;41284:15;:42::i;:::-;41341:14;41352:3;41341:14;;:::i;:::-;;;41255:112;41379:36;41395:5;41402:3;41407:7;41379:15;:36::i;22914:4328::-;22996:14;;;-1:-1:-1;;23541:1:0;23538;23531:20;23585:1;23582;23578:9;23569:18;;23641:5;23637:2;23634:13;23626:5;23622:2;23618:14;23614:34;23605:43;;;23747:5;23756:1;23747:10;23743:373;;24089:11;24081:5;:19;;;;;:::i;:::-;;24074:26;;;;;;23743:373;24240:5;24225:11;:20;24221:90;;24273:22;;-1:-1:-1;;;24273:22:0;;;;;;;;;;;24221:90;24573:17;24711:11;24708:1;24705;24698:25;26118:1;25270;25255:12;;:16;;25240:32;;25378:22;;;;26099:1;:15;;26098:21;;26355;;;26351:25;;26340:36;26425:21;;;26421:25;;26410:36;26496:21;;;26492:25;;26481:36;26567:21;;;26563:25;;26552:36;26638:21;;;26634:25;;26623:36;26710:21;;;26706:25;;;26695:36;;;25225:12;25629;;;25625:23;;;25621:31;;;24828:20;;;24817:32;;;25745:12;;;;24876:21;;25479:16;;;;25736:21;;;;27180:15;;;-1:-1:-1;;;;22914:4328:0:o;42522:205::-;42572:4;42609:10;-1:-1:-1;;;;;42623:13:0;42609:27;;;;;:52;;-1:-1:-1;42654:7:0;;;;;;;42653:8;42609:52;:110;;;;-1:-1:-1;42706:13:0;;42696:4;7861:7;7888:18;;;:9;:18;;;;;;42678:41;;42609:110;42589:130;;42522:205;:::o;41431:694::-;37990:7;:14;;-1:-1:-1;;37990:14:0;;;;;36164:21:::1;:19;:21::i;:::-;41584:16:::2;::::0;;41598:1:::2;41584:16:::0;;;;;::::2;::::0;;37728:42:::2;::::0;41494:25:::2;::::0;41584:16;41598:1;41584:16:::2;::::0;::::2;::::0;;::::2;::::0;::::2;;::::0;-1:-1:-1;41584:16:0::2;41560:40;;41629:4;41611;41616:1;41611:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;41611:23:0::2;;;-1:-1:-1::0;;;;;41611:23:0::2;;;::::0;::::2;41655:6;-1:-1:-1::0;;;;;41655:11:0::2;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41645:4;41650:1;41645:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41645:23:0;;::::2;:7;::::0;;::::2;::::0;;;;;:23;41681:57;::::2;;41753:24;41771:4;-1:-1:-1::0;;;;;7888:18:0;7861:7;7888:18;;;:9;:18;;;;;;;7787:127;41753:24:::2;41792:1;41808:4;41835;41855:15;41681:200;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;41973:20:0::2;::::0;41965:78:::2;::::0;41912:21:::2;::::0;-1:-1:-1;41894:15:0::2;::::0;-1:-1:-1;41973:20:0;;;::::2;-1:-1:-1::0;;;;;41973:20:0::2;::::0;41912:21;;41965:78:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41946:97;;;42059:7;42054:64;;42090:16;;-1:-1:-1::0;;;42090:16:0::2;;;;;;;;;;;42054:64;41483:642;;;;36208:20:::1;35497:1:::0;36753:7;:22;36570:213;36208:20:::1;38027:7:::0;:15;;-1:-1:-1;;38027:15:0;;;41431:694::o;11979:840::-;-1:-1:-1;;;;;12110:18:0;;12102:68;;;;-1:-1:-1;;;12102:68:0;;10555:2:1;12102:68:0;;;10537:21:1;10594:2;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;-1:-1:-1;;;10684:18:1;;;10677:35;10729:19;;12102:68:0;10353:401:1;12102:68:0;-1:-1:-1;;;;;12189:16:0;;12181:64;;;;-1:-1:-1;;;12181:64:0;;10961:2:1;12181:64:0;;;10943:21:1;11000:2;10980:18;;;10973:30;11039:34;11019:18;;;11012:62;-1:-1:-1;;;11090:18:1;;;11083:33;11133:19;;12181:64:0;10759:399:1;12181:64:0;12258:38;12279:4;12285:2;12289:6;12258:20;:38::i;:::-;-1:-1:-1;;;;;12331:15:0;;12309:19;12331:15;;;:9;:15;;;;;;12365:21;;;;12357:72;;;;-1:-1:-1;;;12357:72:0;;11365:2:1;12357:72:0;;;11347:21:1;11404:2;11384:18;;;11377:30;11443:34;11423:18;;;11416:62;-1:-1:-1;;;11494:18:1;;;11487:36;11540:19;;12357:72:0;11163:402:1;12357:72:0;-1:-1:-1;;;;;12465:15:0;;;;;;;:9;:15;;;;;;12483:20;;;12465:38;;12683:13;;;;;;;;;;:23;;;;;;12735:26;;;;;;12497:6;160:25:1;;148:2;133:18;;14:177;12735:26:0;;;;;;;;12774:37;40822:601;42133:381;42264:7;42301:13;-1:-1:-1;;;;;42288:26:0;:9;-1:-1:-1;;;;;42288:26:0;;42284:200;;42338:33;42350:6;42358:7;;42367:3;42338:11;:33::i;:::-;42331:40;;;;42284:200;42403:13;-1:-1:-1;;;;;42393:23:0;:6;-1:-1:-1;;;;;42393:23:0;;42389:95;;42440:32;42452:6;42460;;42468:3;42440:11;:32::i;42389:95::-;-1:-1:-1;42504:1:0;42133:381;;;;;:::o;36244:318::-;35541:1;36374:7;;:19;36370:89;;36417:30;;-1:-1:-1;;;36417:30:0;;;;;;;;;;;36370:89;35541:1;36536:7;:18;36244:318::o;44698:1002::-;44962:11;;;;44957:257;;-1:-1:-1;;;;;44995:22:0;;;;;;:15;:22;;;;;;;;44994:23;;:48;;-1:-1:-1;;;;;;45022:20:0;;;;;;:15;:20;;;;;;;;45021:21;44994:48;44990:213;;;45076:17;;-1:-1:-1;;;;;45067:26:0;;;45076:17;;45067:26;;;;:54;;-1:-1:-1;45104:17:0;;-1:-1:-1;;;;;45097:24:0;;;45104:17;;45097:24;;45067:54;45063:125;;;45153:15;;-1:-1:-1;;;45153:15:0;;;;;;;;;;;45063:125;-1:-1:-1;;;;;45306:20:0;;;;;;:15;:20;;;;;;;;45301:166;;45376:16;;45365:7;45348:14;45358:3;-1:-1:-1;;;;;7888:18:0;7861:7;7888:18;;;:9;:18;;;;;;;7787:127;45348:14;:24;;;;:::i;:::-;45347:45;45343:113;;;45420:20;;-1:-1:-1;;;45420:20:0;;;;;;;;;;;45343:113;-1:-1:-1;;;;;45553:22:0;;;;;;:15;:22;;;;;;;;45548:145;;45606:11;;45596:7;:21;45592:90;;;45645:21;;-1:-1:-1;;;45645:21:0;;;;;;;;;;;196:548:1;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1605:456::-;1682:6;1690;1698;1751:2;1739:9;1730:7;1726:23;1722:32;1719:52;;;1767:1;1764;1757:12;1719:52;1806:9;1793:23;1825:31;1850:5;1825:31;:::i;:::-;1875:5;-1:-1:-1;1932:2:1;1917:18;;1904:32;1945:33;1904:32;1945:33;:::i;:::-;1605:456;;1997:7;;-1:-1:-1;;;2051:2:1;2036:18;;;;2023:32;;1605:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;2507:248::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;-1:-1:-1;;2675:23:1;;;2745:2;2730:18;;;2717:32;;-1:-1:-1;2507:248:1:o;2760:180::-;2819:6;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;-1:-1:-1;2911:23:1;;2760:180;-1:-1:-1;2760:180:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3455:388::-;3523:6;3531;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3639:9;3626:23;3658:31;3683:5;3658:31;:::i;:::-;3708:5;-1:-1:-1;3765:2:1;3750:18;;3737:32;3778:33;3737:32;3778:33;:::i;3848:380::-;3927:1;3923:12;;;;3970;;;3991:61;;4045:4;4037:6;4033:17;4023:27;;3991:61;4098:2;4090:6;4087:14;4067:18;4064:38;4061:161;;4144:10;4139:3;4135:20;4132:1;4125:31;4179:4;4176:1;4169:15;4207:4;4204:1;4197:15;4061:161;;3848:380;;;:::o;4233:127::-;4294:10;4289:3;4285:20;4282:1;4275:31;4325:4;4322:1;4315:15;4349:4;4346:1;4339:15;4365:125;4430:9;;;4451:10;;;4448:36;;;4464:18;;:::i;4495:356::-;4697:2;4679:21;;;4716:18;;;4709:30;4775:34;4770:2;4755:18;;4748:62;4842:2;4827:18;;4495:356::o;4856:184::-;4926:6;4979:2;4967:9;4958:7;4954:23;4950:32;4947:52;;;4995:1;4992;4985:12;4947:52;-1:-1:-1;5018:16:1;;4856:184;-1:-1:-1;4856:184:1:o;5324:245::-;5391:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:52;;;5460:1;5457;5450:12;5412:52;5492:9;5486:16;5511:28;5533:5;5511:28;:::i;5574:168::-;5647:9;;;5678;;5695:15;;;5689:22;;5675:37;5665:71;;5716:18;;:::i;5747:127::-;5808:10;5803:3;5799:20;5796:1;5789:31;5839:4;5836:1;5829:15;5863:4;5860:1;5853:15;5879:217;5919:1;5945;5935:132;;5989:10;5984:3;5980:20;5977:1;5970:31;6024:4;6021:1;6014:15;6052:4;6049:1;6042:15;5935:132;-1:-1:-1;6081:9:1;;5879:217::o;8505:128::-;8572:9;;;8593:11;;;8590:37;;;8607:18;;:::i;8770:127::-;8831:10;8826:3;8822:20;8819:1;8812:31;8862:4;8859:1;8852:15;8886:4;8883:1;8876:15;8902:251;8972:6;9025:2;9013:9;9004:7;9000:23;8996:32;8993:52;;;9041:1;9038;9031:12;8993:52;9073:9;9067:16;9092:31;9117:5;9092:31;:::i;9158:980::-;9420:4;9468:3;9457:9;9453:19;9499:6;9488:9;9481:25;9525:2;9563:6;9558:2;9547:9;9543:18;9536:34;9606:3;9601:2;9590:9;9586:18;9579:31;9630:6;9665;9659:13;9696:6;9688;9681:22;9734:3;9723:9;9719:19;9712:26;;9773:2;9765:6;9761:15;9747:29;;9794:1;9804:195;9818:6;9815:1;9812:13;9804:195;;;9883:13;;-1:-1:-1;;;;;9879:39:1;9867:52;;9974:15;;;;9939:12;;;;9915:1;9833:9;9804:195;;;-1:-1:-1;;;;;;;10055:32:1;;;;10050:2;10035:18;;10028:60;-1:-1:-1;;;10119:3:1;10104:19;10097:35;10016:3;9158:980;-1:-1:-1;;;9158:980:1:o

Swarm Source

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