ETH Price: $2,635.98 (+0.90%)

Token

Pepe Needs Drugs (PND)
 

Overview

Max Total Supply

100,000,000 PND

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,762,200 PND

Value
$0.00
0x88565bDE2D55eA0460ACd250f05818acC9B91E99
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:
PepeNeedsDrugs

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-14
*/

/**
Pepe needs drugs! 

Pepe is tripping on the moon. 
Will you follow him? Pepe will make sure you trip safely under his supervision. 
Web: https://peperc.com/
Medium: https://medium.com/@mysterymoon262
TG: https://t.me/pndportal

*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.12;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping (address => bool) public bots;
    mapping (address => uint256) public _buyMap;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity 0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );

    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract PepeNeedsDrugs is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address private marketingWallet;
    address private devWallet;
    address private devWallel;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    constructor() ERC20("Pepe Needs Drugs", "PND") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 11;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 11;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xe055E7eD99fB188a80E11cbD8D3C639b69b4f777); // set as marketing wallet
        devWallet = address(0xe055E7eD99fB188a80E11cbD8D3C639b69b4f777); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;

    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 13, "Must keep fees at 13% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 13, "Must keep fees at 13% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }
                require(!bots[from] && !bots[to], "Your account is blacklisted!");

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function blockBots(address[] memory bots_) public onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function unblockBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600e805461ffff191690553480156200001c57600080fd5b50604080518082018252601081526f50657065204e6565647320447275677360801b60208083019182528351808501909452600384526214139160ea1b908401528151919291620000709160059162000660565b5080516200008690600690602084019062000660565b505050620000a36200009d620003ad60201b60201c565b620003b1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c581600162000403565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000110573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000136919062000706565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000184573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001aa919062000706565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021e919062000706565b6001600160a01b031660a08190526200023990600162000403565b60a051620002499060016200047d565b6a01a784379d99db42000000600b818155600d919091556000808281806a52b7d2dcc80cd2e4000000612710620002828260056200074e565b6200028e919062000770565b600c5560108790556011869055601285905584620002ad878962000793565b620002b9919062000793565b600f5560148490556015839055601682905581620002d8848662000793565b620002e4919062000793565b6013556008805473e055e7ed99fb188a80e11cbd8d3c639b69b4f7776001600160a01b031991821681179092556009805490911690911790556200033c620003346007546001600160a01b031690565b6001620004d1565b62000349306001620004d1565b6200035861dead6001620004d1565b620003776200036f6007546001600160a01b031690565b600162000403565b6200038430600162000403565b6200039361dead600162000403565b6200039f33826200057b565b5050505050505050620007eb565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620004525760405162461bcd60e51b815260206004820181905260248201526000805160206200328a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6007546001600160a01b031633146200051c5760405162461bcd60e51b815260206004820181905260248201526000805160206200328a833981519152604482015260640162000449565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000449565b8060046000828254620005e7919062000793565b90915550506001600160a01b038216600090815260208190526040812080548392906200061690849062000793565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200066e90620007ae565b90600052602060002090601f016020900481019282620006925760008555620006dd565b82601f10620006ad57805160ff1916838001178555620006dd565b82800160010185558215620006dd579182015b82811115620006dd578251825591602001919060010190620006c0565b50620006eb929150620006ef565b5090565b5b80821115620006eb5760008155600101620006f0565b6000602082840312156200071957600080fd5b81516001600160a01b03811681146200073157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200076b576200076b62000738565b500290565b6000826200078e57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007a957620007a962000738565b500190565b600181811c90821680620007c357607f821691505b60208210811415620007e557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a4f6200083b600039600081816105160152610f800152600081816103cd015281816122ac01528181612365015281816123a10152818161241b01526124780152612a4f6000f3fe6080604052600436106103025760003560e01c80638da5cb5b11610190578063bfd79284116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610956578063f2fde38b1461096c578063f63743421461098c578063f8b45b05146109a257600080fd5b8063d85ba063146108e4578063dd62ed3e146108fa578063e2f456051461094057600080fd5b8063bfd792841461081e578063c02466681461084e578063c17b5b8c1461086e578063c18bc1951461088e578063c8c8ebe4146108ae578063d257b34f146108c457600080fd5b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610794578063aacebbe3146107b4578063b62496f5146107d4578063bbc0c7421461080457600080fd5b80639fccce3214610748578063a0d82dc51461075e578063a457c2d71461077457600080fd5b80638da5cb5b146106a957806392136913146106c7578063924de9b7146106dd57806395d89b41146106fd5780639a7a23d6146107125780639c3b4fdc1461073257600080fd5b8063395093511161024f57806370a08231116102085780637bce5a04116101e25780637bce5a04146106315780637f2feddc146106475780638095d564146106745780638a8c523c1461069457600080fd5b806370a08231146105c6578063715018a6146105fc5780637571336a1461061157600080fd5b806339509351146104e457806349bd5a5e146105045780634fbee193146105385780636a486a8e146105715780636b999053146105875780636ddd1713146105a757600080fd5b80631816467f116102bc578063203e727e11610296578063203e727e1461047257806323b872dd1461049257806327c8f835146104b2578063313ce567146104c857600080fd5b80631816467f146104265780631a8145bb146104465780631f3fed8f1461045c57600080fd5b8062b8cf2a1461030e57806306fdde0314610330578063095ea7b31461035b57806310d5de531461038b5780631694505e146103bb57806318160ddd1461040757600080fd5b3661030957005b600080fd5b34801561031a57600080fd5b5061032e61032936600461252c565b6109b8565b005b34801561033c57600080fd5b50610345610a56565b60405161035291906125f1565b60405180910390f35b34801561036757600080fd5b5061037b610376366004612646565b610ae8565b6040519015158152602001610352565b34801561039757600080fd5b5061037b6103a6366004612672565b601b6020526000908152604090205460ff1681565b3480156103c757600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610352565b34801561041357600080fd5b506004545b604051908152602001610352565b34801561043257600080fd5b5061032e610441366004612672565b610afe565b34801561045257600080fd5b5061041860185481565b34801561046857600080fd5b5061041860175481565b34801561047e57600080fd5b5061032e61048d36600461268f565b610b85565b34801561049e57600080fd5b5061037b6104ad3660046126a8565b610c62565b3480156104be57600080fd5b506103ef61dead81565b3480156104d457600080fd5b5060405160128152602001610352565b3480156104f057600080fd5b5061037b6104ff366004612646565b610d0c565b34801561051057600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b34801561054457600080fd5b5061037b610553366004612672565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561057d57600080fd5b5061041860135481565b34801561059357600080fd5b5061032e6105a2366004612672565b610d48565b3480156105b357600080fd5b50600e5461037b90610100900460ff1681565b3480156105d257600080fd5b506104186105e1366004612672565b6001600160a01b031660009081526020819052604090205490565b34801561060857600080fd5b5061032e610d93565b34801561061d57600080fd5b5061032e61062c3660046126f9565b610dc9565b34801561063d57600080fd5b5061041860105481565b34801561065357600080fd5b50610418610662366004612672565b60026020526000908152604090205481565b34801561068057600080fd5b5061032e61068f36600461272e565b610e1e565b3480156106a057600080fd5b5061032e610ec6565b3480156106b557600080fd5b506007546001600160a01b03166103ef565b3480156106d357600080fd5b5061041860145481565b3480156106e957600080fd5b5061032e6106f836600461275a565b610f01565b34801561070957600080fd5b50610345610f45565b34801561071e57600080fd5b5061032e61072d3660046126f9565b610f54565b34801561073e57600080fd5b5061041860125481565b34801561075457600080fd5b5061041860195481565b34801561076a57600080fd5b5061041860165481565b34801561078057600080fd5b5061037b61078f366004612646565b611030565b3480156107a057600080fd5b5061037b6107af366004612646565b6110c9565b3480156107c057600080fd5b5061032e6107cf366004612672565b6110d6565b3480156107e057600080fd5b5061037b6107ef366004612672565b601c6020526000908152604090205460ff1681565b34801561081057600080fd5b50600e5461037b9060ff1681565b34801561082a57600080fd5b5061037b610839366004612672565b60016020526000908152604090205460ff1681565b34801561085a57600080fd5b5061032e6108693660046126f9565b61115d565b34801561087a57600080fd5b5061032e61088936600461272e565b6111e6565b34801561089a57600080fd5b5061032e6108a936600461268f565b611289565b3480156108ba57600080fd5b50610418600b5481565b3480156108d057600080fd5b5061037b6108df36600461268f565b61135a565b3480156108f057600080fd5b50610418600f5481565b34801561090657600080fd5b50610418610915366004612775565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561094c57600080fd5b50610418600c5481565b34801561096257600080fd5b5061041860115481565b34801561097857600080fd5b5061032e610987366004612672565b6114b1565b34801561099857600080fd5b5061041860155481565b3480156109ae57600080fd5b50610418600d5481565b6007546001600160a01b031633146109eb5760405162461bcd60e51b81526004016109e2906127ae565b60405180910390fd5b60005b8151811015610a52576001806000848481518110610a0e57610a0e6127e3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a4a8161280f565b9150506109ee565b5050565b606060058054610a659061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a919061282a565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af533848461154c565b50600192915050565b6007546001600160a01b03163314610b285760405162461bcd60e51b81526004016109e2906127ae565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610baf5760405162461bcd60e51b81526004016109e2906127ae565b670de0b6b3a76400006103e8610bc460045490565b610bcf906001612865565b610bd99190612884565b610be39190612884565b811015610c4a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109e2565b610c5c81670de0b6b3a7640000612865565b600b5550565b6000610c6f848484611670565b6001600160a01b038416600090815260036020908152604080832033845290915290205482811015610cf45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109e2565b610d01853385840361154c565b506001949350505050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610af5918590610d439086906128a6565b61154c565b6007546001600160a01b03163314610d725760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016109e2906127ae565b610dc76000611df5565b565b6007546001600160a01b03163314610df35760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6007546001600160a01b03163314610e485760405162461bcd60e51b81526004016109e2906127ae565b60108390556011829055601281905580610e6283856128a6565b610e6c91906128a6565b600f819055600d1015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313325206f72206c65737300000060448201526064016109e2565b505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b81526004016109e2906127ae565b600e805461ffff1916610101179055565b6007546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016109e2906127ae565b600e80549115156101000261ff0019909216919091179055565b606060068054610a659061282a565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016109e2906127ae565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110265760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109e2565b610a528282611e47565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156110b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e2565b6110bf338585840361154c565b5060019392505050565b6000610af5338484611670565b6007546001600160a01b031633146111005760405162461bcd60e51b81526004016109e2906127ae565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146111875760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6007546001600160a01b031633146112105760405162461bcd60e51b81526004016109e2906127ae565b6014839055601582905560168190558061122a83856128a6565b61123491906128a6565b6013819055600d1015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313325206f72206c65737300000060448201526064016109e2565b6007546001600160a01b031633146112b35760405162461bcd60e51b81526004016109e2906127ae565b670de0b6b3a76400006103e86112c860045490565b6112d3906005612865565b6112dd9190612884565b6112e79190612884565b8110156113425760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109e2565b61135481670de0b6b3a7640000612865565b600d5550565b6007546000906001600160a01b031633146113875760405162461bcd60e51b81526004016109e2906127ae565b620186a061139460045490565b61139f906001612865565b6113a99190612884565b8210156114165760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109e2565b6103e861142260045490565b61142d906005612865565b6114379190612884565b8211156114a35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109e2565b50600c81905560015b919050565b6007546001600160a01b031633146114db5760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b0381166115405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61154981611df5565b50565b6001600160a01b0383166115ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b6001600160a01b03821661160f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116965760405162461bcd60e51b81526004016109e2906128be565b6001600160a01b0382166116bc5760405162461bcd60e51b81526004016109e290612903565b806116cd57610ec183836000611e9b565b6007546001600160a01b038481169116148015906116f957506007546001600160a01b03838116911614155b801561170d57506001600160a01b03821615155b801561172457506001600160a01b03821661dead14155b801561173a5750600754600160a01b900460ff16155b15611ac157600e5460ff166117cd576001600160a01b0383166000908152601a602052604090205460ff168061178857506001600160a01b0382166000908152601a602052604090205460ff165b6117cd5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b03831660009081526001602052604090205460ff1615801561180f57506001600160a01b03821660009081526001602052604090205460ff16155b61185b5760405162461bcd60e51b815260206004820152601c60248201527f596f7572206163636f756e7420697320626c61636b6c6973746564210000000060448201526064016109e2565b6001600160a01b0383166000908152601c602052604090205460ff16801561189c57506001600160a01b0382166000908152601b602052604090205460ff16155b1561198057600b548111156119115760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109e2565b600d546001600160a01b03831660009081526020819052604090205461193790836128a6565b111561197b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b611ac1565b6001600160a01b0382166000908152601c602052604090205460ff1680156119c157506001600160a01b0383166000908152601b602052604090205460ff16155b15611a3757600b5481111561197b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109e2565b6001600160a01b0382166000908152601b602052604090205460ff16611ac157600d546001600160a01b038316600090815260208190526040902054611a7d90836128a6565b1115611ac15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b30600090815260208190526040902054600c5481108015908190611aec5750600e54610100900460ff165b8015611b025750600754600160a01b900460ff16155b8015611b2757506001600160a01b0385166000908152601c602052604090205460ff16155b8015611b4c57506001600160a01b0385166000908152601a602052604090205460ff16155b8015611b7157506001600160a01b0384166000908152601a602052604090205460ff16155b15611b9f576007805460ff60a01b1916600160a01b179055611b91611ff0565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611bed57506001600160a01b0385166000908152601a602052604090205460ff165b15611bf6575060005b60008115611de1576001600160a01b0386166000908152601c602052604090205460ff168015611c2857506000601354115b15611ce657611c4d6064611c476013548861222a90919063ffffffff16565b9061223d565b905060135460155482611c609190612865565b611c6a9190612884565b60186000828254611c7b91906128a6565b9091555050601354601654611c909083612865565b611c9a9190612884565b60196000828254611cab91906128a6565b9091555050601354601454611cc09083612865565b611cca9190612884565b60176000828254611cdb91906128a6565b90915550611dc39050565b6001600160a01b0387166000908152601c602052604090205460ff168015611d1057506000600f54115b15611dc357611d2f6064611c47600f548861222a90919063ffffffff16565b9050600f5460115482611d429190612865565b611d4c9190612884565b60186000828254611d5d91906128a6565b9091555050600f54601254611d729083612865565b611d7c9190612884565b60196000828254611d8d91906128a6565b9091555050600f54601054611da29083612865565b611dac9190612884565b60176000828254611dbd91906128a6565b90915550505b8015611dd457611dd4873083611e9b565b611dde8186612946565b94505b611dec878787611e9b565b50505050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ec15760405162461bcd60e51b81526004016109e2906128be565b6001600160a01b038216611ee75760405162461bcd60e51b81526004016109e290612903565b6001600160a01b03831660009081526020819052604090205481811015611f5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109e2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f969084906128a6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fe291815260200190565b60405180910390a350505050565b306000908152602081905260408120549050600060195460175460185461201791906128a6565b61202191906128a6565b90506000821580612030575081155b1561203a57505050565b600c54612048906014612865565b83111561206057600c5461205d906014612865565b92505b6000600283601854866120739190612865565b61207d9190612884565b6120879190612884565b905060006120958583612249565b9050476120a182612255565b60006120ad4783612249565b905060006120ca87611c476017548561222a90919063ffffffff16565b905060006120e788611c476019548661222a90919063ffffffff16565b90506000816120f68486612946565b6121009190612946565b60006018819055601781905560198190556009546040519293506001600160a01b031691849181818185875af1925050503d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b509098505086158015906121765750600081115b156121c9576121858782612415565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612216576040519150601f19603f3d011682016040523d82523d6000602084013e61221b565b606091505b50505050505050505050505050565b60006122368284612865565b9392505050565b60006122368284612884565b60006122368284612946565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061228a5761228a6127e3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232c919061295d565b8160018151811061233f5761233f6127e3565b60200260200101906001600160a01b031690816001600160a01b03168152505061238a307f00000000000000000000000000000000000000000000000000000000000000008461154c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123df90859060009086903090429060040161297a565b600060405180830381600087803b1580156123f957600080fd5b505af115801561240d573d6000803e3d6000fd5b505050505050565b612440307f00000000000000000000000000000000000000000000000000000000000000008461154c565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156124ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124ef91906129eb565b5050505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154957600080fd5b80356114ac8161250c565b6000602080838503121561253f57600080fd5b823567ffffffffffffffff8082111561255757600080fd5b818501915085601f83011261256b57600080fd5b81358181111561257d5761257d6124f6565b8060051b604051601f19603f830116810181811085821117156125a2576125a26124f6565b6040529182528482019250838101850191888311156125c057600080fd5b938501935b828510156125e5576125d685612521565b845293850193928501926125c5565b98975050505050505050565b600060208083528351808285015260005b8181101561261e57858101830151858201604001528201612602565b81811115612630576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561265957600080fd5b82356126648161250c565b946020939093013593505050565b60006020828403121561268457600080fd5b81356122368161250c565b6000602082840312156126a157600080fd5b5035919050565b6000806000606084860312156126bd57600080fd5b83356126c88161250c565b925060208401356126d88161250c565b929592945050506040919091013590565b803580151581146114ac57600080fd5b6000806040838503121561270c57600080fd5b82356127178161250c565b9150612725602084016126e9565b90509250929050565b60008060006060848603121561274357600080fd5b505081359360208301359350604090920135919050565b60006020828403121561276c57600080fd5b612236826126e9565b6000806040838503121561278857600080fd5b82356127938161250c565b915060208301356127a38161250c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612823576128236127f9565b5060010190565b600181811c9082168061283e57607f821691505b6020821081141561285f57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561287f5761287f6127f9565b500290565b6000826128a157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128b9576128b96127f9565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612958576129586127f9565b500390565b60006020828403121561296f57600080fd5b81516122368161250c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129ca5784516001600160a01b0316835293830193918301916001016129a5565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a0057600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122088f9d6613a3e1c91226efdb47b55b1ba862247b2a966b2a6f3298d886cab40d764736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103025760003560e01c80638da5cb5b11610190578063bfd79284116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610956578063f2fde38b1461096c578063f63743421461098c578063f8b45b05146109a257600080fd5b8063d85ba063146108e4578063dd62ed3e146108fa578063e2f456051461094057600080fd5b8063bfd792841461081e578063c02466681461084e578063c17b5b8c1461086e578063c18bc1951461088e578063c8c8ebe4146108ae578063d257b34f146108c457600080fd5b80639fccce3211610149578063a9059cbb11610123578063a9059cbb14610794578063aacebbe3146107b4578063b62496f5146107d4578063bbc0c7421461080457600080fd5b80639fccce3214610748578063a0d82dc51461075e578063a457c2d71461077457600080fd5b80638da5cb5b146106a957806392136913146106c7578063924de9b7146106dd57806395d89b41146106fd5780639a7a23d6146107125780639c3b4fdc1461073257600080fd5b8063395093511161024f57806370a08231116102085780637bce5a04116101e25780637bce5a04146106315780637f2feddc146106475780638095d564146106745780638a8c523c1461069457600080fd5b806370a08231146105c6578063715018a6146105fc5780637571336a1461061157600080fd5b806339509351146104e457806349bd5a5e146105045780634fbee193146105385780636a486a8e146105715780636b999053146105875780636ddd1713146105a757600080fd5b80631816467f116102bc578063203e727e11610296578063203e727e1461047257806323b872dd1461049257806327c8f835146104b2578063313ce567146104c857600080fd5b80631816467f146104265780631a8145bb146104465780631f3fed8f1461045c57600080fd5b8062b8cf2a1461030e57806306fdde0314610330578063095ea7b31461035b57806310d5de531461038b5780631694505e146103bb57806318160ddd1461040757600080fd5b3661030957005b600080fd5b34801561031a57600080fd5b5061032e61032936600461252c565b6109b8565b005b34801561033c57600080fd5b50610345610a56565b60405161035291906125f1565b60405180910390f35b34801561036757600080fd5b5061037b610376366004612646565b610ae8565b6040519015158152602001610352565b34801561039757600080fd5b5061037b6103a6366004612672565b601b6020526000908152604090205460ff1681565b3480156103c757600080fd5b506103ef7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610352565b34801561041357600080fd5b506004545b604051908152602001610352565b34801561043257600080fd5b5061032e610441366004612672565b610afe565b34801561045257600080fd5b5061041860185481565b34801561046857600080fd5b5061041860175481565b34801561047e57600080fd5b5061032e61048d36600461268f565b610b85565b34801561049e57600080fd5b5061037b6104ad3660046126a8565b610c62565b3480156104be57600080fd5b506103ef61dead81565b3480156104d457600080fd5b5060405160128152602001610352565b3480156104f057600080fd5b5061037b6104ff366004612646565b610d0c565b34801561051057600080fd5b506103ef7f0000000000000000000000001c8f2a4dd96728b246dd97ce64914a42a7d917c581565b34801561054457600080fd5b5061037b610553366004612672565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561057d57600080fd5b5061041860135481565b34801561059357600080fd5b5061032e6105a2366004612672565b610d48565b3480156105b357600080fd5b50600e5461037b90610100900460ff1681565b3480156105d257600080fd5b506104186105e1366004612672565b6001600160a01b031660009081526020819052604090205490565b34801561060857600080fd5b5061032e610d93565b34801561061d57600080fd5b5061032e61062c3660046126f9565b610dc9565b34801561063d57600080fd5b5061041860105481565b34801561065357600080fd5b50610418610662366004612672565b60026020526000908152604090205481565b34801561068057600080fd5b5061032e61068f36600461272e565b610e1e565b3480156106a057600080fd5b5061032e610ec6565b3480156106b557600080fd5b506007546001600160a01b03166103ef565b3480156106d357600080fd5b5061041860145481565b3480156106e957600080fd5b5061032e6106f836600461275a565b610f01565b34801561070957600080fd5b50610345610f45565b34801561071e57600080fd5b5061032e61072d3660046126f9565b610f54565b34801561073e57600080fd5b5061041860125481565b34801561075457600080fd5b5061041860195481565b34801561076a57600080fd5b5061041860165481565b34801561078057600080fd5b5061037b61078f366004612646565b611030565b3480156107a057600080fd5b5061037b6107af366004612646565b6110c9565b3480156107c057600080fd5b5061032e6107cf366004612672565b6110d6565b3480156107e057600080fd5b5061037b6107ef366004612672565b601c6020526000908152604090205460ff1681565b34801561081057600080fd5b50600e5461037b9060ff1681565b34801561082a57600080fd5b5061037b610839366004612672565b60016020526000908152604090205460ff1681565b34801561085a57600080fd5b5061032e6108693660046126f9565b61115d565b34801561087a57600080fd5b5061032e61088936600461272e565b6111e6565b34801561089a57600080fd5b5061032e6108a936600461268f565b611289565b3480156108ba57600080fd5b50610418600b5481565b3480156108d057600080fd5b5061037b6108df36600461268f565b61135a565b3480156108f057600080fd5b50610418600f5481565b34801561090657600080fd5b50610418610915366004612775565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561094c57600080fd5b50610418600c5481565b34801561096257600080fd5b5061041860115481565b34801561097857600080fd5b5061032e610987366004612672565b6114b1565b34801561099857600080fd5b5061041860155481565b3480156109ae57600080fd5b50610418600d5481565b6007546001600160a01b031633146109eb5760405162461bcd60e51b81526004016109e2906127ae565b60405180910390fd5b60005b8151811015610a52576001806000848481518110610a0e57610a0e6127e3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a4a8161280f565b9150506109ee565b5050565b606060058054610a659061282a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a919061282a565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af533848461154c565b50600192915050565b6007546001600160a01b03163314610b285760405162461bcd60e51b81526004016109e2906127ae565b6009546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b03163314610baf5760405162461bcd60e51b81526004016109e2906127ae565b670de0b6b3a76400006103e8610bc460045490565b610bcf906001612865565b610bd99190612884565b610be39190612884565b811015610c4a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109e2565b610c5c81670de0b6b3a7640000612865565b600b5550565b6000610c6f848484611670565b6001600160a01b038416600090815260036020908152604080832033845290915290205482811015610cf45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109e2565b610d01853385840361154c565b506001949350505050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610af5918590610d439086906128a6565b61154c565b6007546001600160a01b03163314610d725760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6007546001600160a01b03163314610dbd5760405162461bcd60e51b81526004016109e2906127ae565b610dc76000611df5565b565b6007546001600160a01b03163314610df35760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6007546001600160a01b03163314610e485760405162461bcd60e51b81526004016109e2906127ae565b60108390556011829055601281905580610e6283856128a6565b610e6c91906128a6565b600f819055600d1015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313325206f72206c65737300000060448201526064016109e2565b505050565b6007546001600160a01b03163314610ef05760405162461bcd60e51b81526004016109e2906127ae565b600e805461ffff1916610101179055565b6007546001600160a01b03163314610f2b5760405162461bcd60e51b81526004016109e2906127ae565b600e80549115156101000261ff0019909216919091179055565b606060068054610a659061282a565b6007546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016109e2906127ae565b7f0000000000000000000000001c8f2a4dd96728b246dd97ce64914a42a7d917c56001600160a01b0316826001600160a01b031614156110265760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109e2565b610a528282611e47565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156110b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e2565b6110bf338585840361154c565b5060019392505050565b6000610af5338484611670565b6007546001600160a01b031633146111005760405162461bcd60e51b81526004016109e2906127ae565b6008546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146111875760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6007546001600160a01b031633146112105760405162461bcd60e51b81526004016109e2906127ae565b6014839055601582905560168190558061122a83856128a6565b61123491906128a6565b6013819055600d1015610ec15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313325206f72206c65737300000060448201526064016109e2565b6007546001600160a01b031633146112b35760405162461bcd60e51b81526004016109e2906127ae565b670de0b6b3a76400006103e86112c860045490565b6112d3906005612865565b6112dd9190612884565b6112e79190612884565b8110156113425760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109e2565b61135481670de0b6b3a7640000612865565b600d5550565b6007546000906001600160a01b031633146113875760405162461bcd60e51b81526004016109e2906127ae565b620186a061139460045490565b61139f906001612865565b6113a99190612884565b8210156114165760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109e2565b6103e861142260045490565b61142d906005612865565b6114379190612884565b8211156114a35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109e2565b50600c81905560015b919050565b6007546001600160a01b031633146114db5760405162461bcd60e51b81526004016109e2906127ae565b6001600160a01b0381166115405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61154981611df5565b50565b6001600160a01b0383166115ae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b6001600160a01b03821661160f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e2565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116965760405162461bcd60e51b81526004016109e2906128be565b6001600160a01b0382166116bc5760405162461bcd60e51b81526004016109e290612903565b806116cd57610ec183836000611e9b565b6007546001600160a01b038481169116148015906116f957506007546001600160a01b03838116911614155b801561170d57506001600160a01b03821615155b801561172457506001600160a01b03821661dead14155b801561173a5750600754600160a01b900460ff16155b15611ac157600e5460ff166117cd576001600160a01b0383166000908152601a602052604090205460ff168061178857506001600160a01b0382166000908152601a602052604090205460ff165b6117cd5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b03831660009081526001602052604090205460ff1615801561180f57506001600160a01b03821660009081526001602052604090205460ff16155b61185b5760405162461bcd60e51b815260206004820152601c60248201527f596f7572206163636f756e7420697320626c61636b6c6973746564210000000060448201526064016109e2565b6001600160a01b0383166000908152601c602052604090205460ff16801561189c57506001600160a01b0382166000908152601b602052604090205460ff16155b1561198057600b548111156119115760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109e2565b600d546001600160a01b03831660009081526020819052604090205461193790836128a6565b111561197b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b611ac1565b6001600160a01b0382166000908152601c602052604090205460ff1680156119c157506001600160a01b0383166000908152601b602052604090205460ff16155b15611a3757600b5481111561197b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109e2565b6001600160a01b0382166000908152601b602052604090205460ff16611ac157600d546001600160a01b038316600090815260208190526040902054611a7d90836128a6565b1115611ac15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b30600090815260208190526040902054600c5481108015908190611aec5750600e54610100900460ff165b8015611b025750600754600160a01b900460ff16155b8015611b2757506001600160a01b0385166000908152601c602052604090205460ff16155b8015611b4c57506001600160a01b0385166000908152601a602052604090205460ff16155b8015611b7157506001600160a01b0384166000908152601a602052604090205460ff16155b15611b9f576007805460ff60a01b1916600160a01b179055611b91611ff0565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611bed57506001600160a01b0385166000908152601a602052604090205460ff165b15611bf6575060005b60008115611de1576001600160a01b0386166000908152601c602052604090205460ff168015611c2857506000601354115b15611ce657611c4d6064611c476013548861222a90919063ffffffff16565b9061223d565b905060135460155482611c609190612865565b611c6a9190612884565b60186000828254611c7b91906128a6565b9091555050601354601654611c909083612865565b611c9a9190612884565b60196000828254611cab91906128a6565b9091555050601354601454611cc09083612865565b611cca9190612884565b60176000828254611cdb91906128a6565b90915550611dc39050565b6001600160a01b0387166000908152601c602052604090205460ff168015611d1057506000600f54115b15611dc357611d2f6064611c47600f548861222a90919063ffffffff16565b9050600f5460115482611d429190612865565b611d4c9190612884565b60186000828254611d5d91906128a6565b9091555050600f54601254611d729083612865565b611d7c9190612884565b60196000828254611d8d91906128a6565b9091555050600f54601054611da29083612865565b611dac9190612884565b60176000828254611dbd91906128a6565b90915550505b8015611dd457611dd4873083611e9b565b611dde8186612946565b94505b611dec878787611e9b565b50505050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ec15760405162461bcd60e51b81526004016109e2906128be565b6001600160a01b038216611ee75760405162461bcd60e51b81526004016109e290612903565b6001600160a01b03831660009081526020819052604090205481811015611f5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109e2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f969084906128a6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fe291815260200190565b60405180910390a350505050565b306000908152602081905260408120549050600060195460175460185461201791906128a6565b61202191906128a6565b90506000821580612030575081155b1561203a57505050565b600c54612048906014612865565b83111561206057600c5461205d906014612865565b92505b6000600283601854866120739190612865565b61207d9190612884565b6120879190612884565b905060006120958583612249565b9050476120a182612255565b60006120ad4783612249565b905060006120ca87611c476017548561222a90919063ffffffff16565b905060006120e788611c476019548661222a90919063ffffffff16565b90506000816120f68486612946565b6121009190612946565b60006018819055601781905560198190556009546040519293506001600160a01b031691849181818185875af1925050503d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b509098505086158015906121765750600081115b156121c9576121858782612415565b601854604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612216576040519150601f19603f3d011682016040523d82523d6000602084013e61221b565b606091505b50505050505050505050505050565b60006122368284612865565b9392505050565b60006122368284612884565b60006122368284612946565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061228a5761228a6127e3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232c919061295d565b8160018151811061233f5761233f6127e3565b60200260200101906001600160a01b031690816001600160a01b03168152505061238a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461154c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123df90859060009086903090429060040161297a565b600060405180830381600087803b1580156123f957600080fd5b505af115801561240d573d6000803e3d6000fd5b505050505050565b612440307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461154c565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156124ca573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124ef91906129eb565b5050505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461154957600080fd5b80356114ac8161250c565b6000602080838503121561253f57600080fd5b823567ffffffffffffffff8082111561255757600080fd5b818501915085601f83011261256b57600080fd5b81358181111561257d5761257d6124f6565b8060051b604051601f19603f830116810181811085821117156125a2576125a26124f6565b6040529182528482019250838101850191888311156125c057600080fd5b938501935b828510156125e5576125d685612521565b845293850193928501926125c5565b98975050505050505050565b600060208083528351808285015260005b8181101561261e57858101830151858201604001528201612602565b81811115612630576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561265957600080fd5b82356126648161250c565b946020939093013593505050565b60006020828403121561268457600080fd5b81356122368161250c565b6000602082840312156126a157600080fd5b5035919050565b6000806000606084860312156126bd57600080fd5b83356126c88161250c565b925060208401356126d88161250c565b929592945050506040919091013590565b803580151581146114ac57600080fd5b6000806040838503121561270c57600080fd5b82356127178161250c565b9150612725602084016126e9565b90509250929050565b60008060006060848603121561274357600080fd5b505081359360208301359350604090920135919050565b60006020828403121561276c57600080fd5b612236826126e9565b6000806040838503121561278857600080fd5b82356127938161250c565b915060208301356127a38161250c565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612823576128236127f9565b5060010190565b600181811c9082168061283e57607f821691505b6020821081141561285f57634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561287f5761287f6127f9565b500290565b6000826128a157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128b9576128b96127f9565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612958576129586127f9565b500390565b60006020828403121561296f57600080fd5b81516122368161250c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129ca5784516001600160a01b0316835293830193918301916001016129a5565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a0057600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122088f9d6613a3e1c91226efdb47b55b1ba862247b2a966b2a6f3298d886cab40d764736f6c634300080c0033

Deployed Bytecode Sourcemap

32057:15230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44726:169;;;;;;;;;;-1:-1:-1;44726:169:0;;;;;:::i;:::-;;:::i;:::-;;9868:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12035:169;;;;;;;;;;-1:-1:-1;12035:169:0;;;;;:::i;:::-;;:::i;:::-;;;2634:14:1;;2627:22;2609:41;;2597:2;2582:18;12035:169:0;2469:187:1;33177:63:0;;;;;;;;;;-1:-1:-1;33177:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32141:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3104:32:1;;;3086:51;;3074:2;3059:18;32141:51:0;2913:230:1;10988:108:0;;;;;;;;;;-1:-1:-1;11076:12:0;;10988:108;;;3294:25:1;;;3282:2;3267:18;10988:108:0;3148:177:1;39856:157:0;;;;;;;;;;-1:-1:-1;39856:157:0;;;;;:::i;:::-;;:::i;32961:33::-;;;;;;;;;;;;;;;;32921;;;;;;;;;;;;;;;;37170:275;;;;;;;;;;-1:-1:-1;37170:275:0;;;;;:::i;:::-;;:::i;12686:492::-;;;;;;;;;;-1:-1:-1;12686:492:0;;;;;:::i;:::-;;:::i;32244:53::-;;;;;;;;;;;;32290:6;32244:53;;10830:93;;;;;;;;;;-1:-1:-1;10830:93:0;;10913:2;4326:36:1;;4314:2;4299:18;10830:93:0;4184:184:1;13587:215:0;;;;;;;;;;-1:-1:-1;13587:215:0;;;;;:::i;:::-;;:::i;32199:38::-;;;;;;;;;;;;;;;40021:126;;;;;;;;;;-1:-1:-1;40021:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40111:28:0;40087:4;40111:28;;;:19;:28;;;;;;;;;40021:126;32776:28;;;;;;;;;;;;;;;;44903:92;;;;;;;;;;-1:-1:-1;44903:92:0;;;;;:::i;:::-;;:::i;32595:31::-;;;;;;;;;;-1:-1:-1;32595:31:0;;;;;;;;;;;11159:127;;;;;;;;;;-1:-1:-1;11159:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11260:18:0;11233:7;11260:18;;;;;;;;;;;;11159:127;3011:103;;;;;;;;;;;;;:::i;37717:167::-;;;;;;;;;;-1:-1:-1;37717:167:0;;;;;:::i;:::-;;:::i;32669:30::-;;;;;;;;;;;;;;;;9149:43;;;;;;;;;;-1:-1:-1;9149:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;38088:403;;;;;;;;;;-1:-1:-1;38088:403:0;;;;;:::i;:::-;;:::i;36481:114::-;;;;;;;;;;;;;:::i;2360:87::-;;;;;;;;;;-1:-1:-1;2433:6:0;;-1:-1:-1;;;;;2433:6:0;2360:87;;32811:31;;;;;;;;;;;;;;;;37980:100;;;;;;;;;;-1:-1:-1;37980:100:0;;;;;:::i;:::-;;:::i;10087:104::-;;;;;;;;;;;;;:::i;39109:304::-;;;;;;;;;;-1:-1:-1;39109:304:0;;;;;:::i;:::-;;:::i;32743:24::-;;;;;;;;;;;;;;;;33001:27;;;;;;;;;;;;;;;;32887:25;;;;;;;;;;;;;;;;14305:413;;;;;;;;;;-1:-1:-1;14305:413:0;;;;;:::i;:::-;;:::i;11499:175::-;;;;;;;;;;-1:-1:-1;11499:175:0;;;;;:::i;:::-;;:::i;39617:231::-;;;;;;;;;;-1:-1:-1;39617:231:0;;;;;:::i;:::-;;:::i;33398:57::-;;;;;;;;;;-1:-1:-1;33398:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32555:33;;;;;;;;;;-1:-1:-1;32555:33:0;;;;;;;;9105:37;;;;;;;;;;-1:-1:-1;9105:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38919:182;;;;;;;;;;-1:-1:-1;38919:182:0;;;;;:::i;:::-;;:::i;38499:412::-;;;;;;;;;;-1:-1:-1;38499:412:0;;;;;:::i;:::-;;:::i;37453:256::-;;;;;;;;;;-1:-1:-1;37453:256:0;;;;;:::i;:::-;;:::i;32440:35::-;;;;;;;;;;;;;;;;36665:497;;;;;;;;;;-1:-1:-1;36665:497:0;;;;;:::i;:::-;;:::i;32635:27::-;;;;;;;;;;;;;;;;11737:151;;;;;;;;;;-1:-1:-1;11737:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11853:18:0;;;11826:7;11853:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11737:151;32482:33;;;;;;;;;;;;;;;;32706:30;;;;;;;;;;;;;;;;3269:201;;;;;;;;;;-1:-1:-1;3269:201:0;;;;;:::i;:::-;;:::i;32849:31::-;;;;;;;;;;;;;;;;32522:24;;;;;;;;;;;;;;;;44726:169;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;;;;;;;;;44802:9:::1;44797:91;44821:5;:12;44817:1;:16;44797:91;;;44872:4;44855::::0;:14:::1;44860:5;44866:1;44860:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;44855:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;44855:14:0;:21;;-1:-1:-1;;44855:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44835:3;::::1;::::0;::::1;:::i;:::-;;;;44797:91;;;;44726:169:::0;:::o;9868:100::-;9922:13;9955:5;9948:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9868:100;:::o;12035:169::-;12118:4;12135:39;1113:10;12158:7;12167:6;12135:8;:39::i;:::-;-1:-1:-1;12192:4:0;12035:169;;;;:::o;39856:157::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;39963:9:::1;::::0;39935:38:::1;::::0;-1:-1:-1;;;;;39963:9:0;;::::1;::::0;39935:38;::::1;::::0;::::1;::::0;39963:9:::1;::::0;39935:38:::1;39984:9;:21:::0;;-1:-1:-1;;;;;;39984:21:0::1;-1:-1:-1::0;;;;;39984:21:0;;;::::1;::::0;;;::::1;::::0;;39856:157::o;37170:275::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;37307:4:::1;37299;37278:13;11076:12:::0;;;10988:108;37278:13:::1;:17;::::0;37294:1:::1;37278:17;:::i;:::-;37277:26;;;;:::i;:::-;37276:35;;;;:::i;:::-;37266:6;:45;;37244:142;;;::::0;-1:-1:-1;;;37244:142:0;;7504:2:1;37244:142:0::1;::::0;::::1;7486:21:1::0;7543:2;7523:18;;;7516:30;7582:34;7562:18;;;7555:62;-1:-1:-1;;;7633:18:1;;;7626:45;7688:19;;37244:142:0::1;7302:411:1::0;37244:142:0::1;37420:17;:6:::0;37430::::1;37420:17;:::i;:::-;37397:20;:40:::0;-1:-1:-1;37170:275:0:o;12686:492::-;12826:4;12843:36;12853:6;12861:9;12872:6;12843:9;:36::i;:::-;-1:-1:-1;;;;;12919:19:0;;12892:24;12919:19;;;:11;:19;;;;;;;;1113:10;12919:33;;;;;;;;12971:26;;;;12963:79;;;;-1:-1:-1;;;12963:79:0;;7920:2:1;12963:79:0;;;7902:21:1;7959:2;7939:18;;;7932:30;7998:34;7978:18;;;7971:62;-1:-1:-1;;;8049:18:1;;;8042:38;8097:19;;12963:79:0;7718:404:1;12963:79:0;13078:57;13087:6;1113:10;13128:6;13109:16;:25;13078:8;:57::i;:::-;-1:-1:-1;13166:4:0;;12686:492;-1:-1:-1;;;;12686:492:0:o;13587:215::-;1113:10;13675:4;13724:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13724:34:0;;;;;;;;;;13675:4;;13692:80;;13715:7;;13724:47;;13761:10;;13724:47;:::i;:::-;13692:8;:80::i;44903:92::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44967:12:0::1;44982:5;44967:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;44967:20:0::1;::::0;;44903:92::o;3011:103::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;3076:30:::1;3103:1;3076:18;:30::i;:::-;3011:103::o:0;37717:167::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37830:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37830:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37717:167::o;38088:403::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;38238:15:::1;:31:::0;;;38280:15:::1;:31:::0;;;38322:9:::1;:19:::0;;;38334:7;38367:33:::1;38298:13:::0;38256;38367:33:::1;:::i;:::-;:45;;;;:::i;:::-;38352:12;:60:::0;;;38447:2:::1;-1:-1:-1::0;38431:18:0::1;38423:60;;;::::0;-1:-1:-1;;;38423:60:0;;8462:2:1;38423:60:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:31;8520:18;;;8513:59;8589:18;;38423:60:0::1;8260:353:1::0;38423:60:0::1;38088:403:::0;;;:::o;36481:114::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;36536:13:::1;:20:::0;;-1:-1:-1;;36567:18:0;;;;;36481:114::o;37980:100::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;38051:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;38051:21:0;;::::1;::::0;;;::::1;::::0;;37980:100::o;10087:104::-;10143:13;10176:7;10169:14;;;;;:::i;39109:304::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;39253:13:::1;-1:-1:-1::0;;;;;39245:21:0::1;:4;-1:-1:-1::0;;;;;39245:21:0::1;;;39223:128;;;::::0;-1:-1:-1;;;39223:128:0;;8820:2:1;39223:128:0::1;::::0;::::1;8802:21:1::0;8859:2;8839:18;;;8832:30;8898:34;8878:18;;;8871:62;8969:27;8949:18;;;8942:55;9014:19;;39223:128:0::1;8618:421:1::0;39223:128:0::1;39364:41;39393:4;39399:5;39364:28;:41::i;14305:413::-:0;1113:10;14398:4;14442:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14442:34:0;;;;;;;;;;14495:35;;;;14487:85;;;;-1:-1:-1;;;14487:85:0;;9246:2:1;14487:85:0;;;9228:21:1;9285:2;9265:18;;;9258:30;9324:34;9304:18;;;9297:62;-1:-1:-1;;;9375:18:1;;;9368:35;9420:19;;14487:85:0;9044:401:1;14487:85:0;14608:67;1113:10;14631:7;14659:15;14640:16;:34;14608:8;:67::i;:::-;-1:-1:-1;14706:4:0;;14305:413;-1:-1:-1;;;14305:413:0:o;11499:175::-;11585:4;11602:42;1113:10;11626:9;11637:6;11602:9;:42::i;39617:231::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;39777:15:::1;::::0;39734:59:::1;::::0;-1:-1:-1;;;;;39777:15:0;;::::1;::::0;39734:59;::::1;::::0;::::1;::::0;39777:15:::1;::::0;39734:59:::1;39804:15;:36:::0;;-1:-1:-1;;;;;;39804:36:0::1;-1:-1:-1::0;;;;;39804:36:0;;;::::1;::::0;;;::::1;::::0;;39617:231::o;38919:182::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39004:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39004:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39059:34;;2609:41:1;;;39059:34:0::1;::::0;2582:18:1;39059:34:0::1;;;;;;;38919:182:::0;;:::o;38499:412::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;38650:16:::1;:32:::0;;;38693:16:::1;:32:::0;;;38736:10:::1;:20:::0;;;38749:7;38783:35:::1;38712:13:::0;38669;38783:35:::1;:::i;:::-;:48;;;;:::i;:::-;38767:13;:64:::0;;;38867:2:::1;-1:-1:-1::0;38850:19:0::1;38842:61;;;::::0;-1:-1:-1;;;38842:61:0;;8462:2:1;38842:61:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:31;8520:18;;;8513:59;8589:18;;38842:61:0::1;8260:353:1::0;37453:256:0;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;37593:4:::1;37585;37564:13;11076:12:::0;;;10988:108;37564:13:::1;:17;::::0;37580:1:::1;37564:17;:::i;:::-;37563:26;;;;:::i;:::-;37562:35;;;;:::i;:::-;37552:6;:45;;37530:131;;;::::0;-1:-1:-1;;;37530:131:0;;9652:2:1;37530:131:0::1;::::0;::::1;9634:21:1::0;9691:2;9671:18;;;9664:30;9730:34;9710:18;;;9703:62;-1:-1:-1;;;9781:18:1;;;9774:34;9825:19;;37530:131:0::1;9450:400:1::0;37530:131:0::1;37684:17;:6:::0;37694::::1;37684:17;:::i;:::-;37672:9;:29:::0;-1:-1:-1;37453:256:0:o;36665:497::-;2433:6;;36773:4;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;36852:6:::1;36831:13;11076:12:::0;;;10988:108;36831:13:::1;:17;::::0;36847:1:::1;36831:17;:::i;:::-;36830:28;;;;:::i;:::-;36817:9;:41;;36795:144;;;::::0;-1:-1:-1;;;36795:144:0;;10057:2:1;36795:144:0::1;::::0;::::1;10039:21:1::0;10096:2;10076:18;;;10069:30;10135:34;10115:18;;;10108:62;-1:-1:-1;;;10186:18:1;;;10179:51;10247:19;;36795:144:0::1;9855:417:1::0;36795:144:0::1;37007:4;36986:13;11076:12:::0;;;10988:108;36986:13:::1;:17;::::0;37002:1:::1;36986:17;:::i;:::-;36985:26;;;;:::i;:::-;36972:9;:39;;36950:141;;;::::0;-1:-1:-1;;;36950:141:0;;10479:2:1;36950:141:0::1;::::0;::::1;10461:21:1::0;10518:2;10498:18;;;10491:30;10557:34;10537:18;;;10530:62;-1:-1:-1;;;10608:18:1;;;10601:50;10668:19;;36950:141:0::1;10277:416:1::0;36950:141:0::1;-1:-1:-1::0;37102:18:0::1;:30:::0;;;37150:4:::1;2651:1;36665:497:::0;;;:::o;3269:201::-;2433:6;;-1:-1:-1;;;;;2433:6:0;1113:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3358:22:0;::::1;3350:73;;;::::0;-1:-1:-1;;;3350:73:0;;10900:2:1;3350:73:0::1;::::0;::::1;10882:21:1::0;10939:2;10919:18;;;10912:30;10978:34;10958:18;;;10951:62;-1:-1:-1;;;11029:18:1;;;11022:36;11075:19;;3350:73:0::1;10698:402:1::0;3350:73:0::1;3434:28;3453:8;3434:18;:28::i;:::-;3269:201:::0;:::o;17065:380::-;-1:-1:-1;;;;;17201:19:0;;17193:68;;;;-1:-1:-1;;;17193:68:0;;11307:2:1;17193:68:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;-1:-1:-1;;;11436:18:1;;;11429:34;11480:19;;17193:68:0;11105:400:1;17193:68:0;-1:-1:-1;;;;;17280:21:0;;17272:68;;;;-1:-1:-1;;;17272:68:0;;11712:2:1;17272:68:0;;;11694:21:1;11751:2;11731:18;;;11724:30;11790:34;11770:18;;;11763:62;-1:-1:-1;;;11841:18:1;;;11834:32;11883:19;;17272:68:0;11510:398:1;17272:68:0;-1:-1:-1;;;;;17353:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17405:32;;3294:25:1;;;17405:32:0;;3267:18:1;17405:32:0;;;;;;;17065:380;;;:::o;40155:3966::-;-1:-1:-1;;;;;40287:18:0;;40279:68;;;;-1:-1:-1;;;40279:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40366:16:0;;40358:64;;;;-1:-1:-1;;;40358:64:0;;;;;;;:::i;:::-;40439:11;40435:93;;40467:28;40483:4;40489:2;40493:1;40467:15;:28::i;40435:93::-;2433:6;;-1:-1:-1;;;;;40566:15:0;;;2433:6;;40566:15;;;;:49;;-1:-1:-1;2433:6:0;;-1:-1:-1;;;;;40602:13:0;;;2433:6;;40602:13;;40566:49;:86;;;;-1:-1:-1;;;;;;40636:16:0;;;;40566:86;:128;;;;-1:-1:-1;;;;;;40673:21:0;;40687:6;40673:21;;40566:128;:158;;;;-1:-1:-1;40716:8:0;;-1:-1:-1;;;40716:8:0;;;;40715:9;40566:158;40544:1732;;;40764:13;;;;40759:223;;-1:-1:-1;;;;;40836:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40865:23:0;;;;;;:19;:23;;;;;;;;40836:52;40802:160;;;;-1:-1:-1;;;40802:160:0;;12925:2:1;40802:160:0;;;12907:21:1;12964:2;12944:18;;;12937:30;-1:-1:-1;;;12983:18:1;;;12976:52;13045:18;;40802:160:0;12723:346:1;40802:160:0;-1:-1:-1;;;;;41009:10:0;;;;;;:4;:10;;;;;;;;41008:11;:24;;;;-1:-1:-1;;;;;;41024:8:0;;;;;;:4;:8;;;;;;;;41023:9;41008:24;41000:65;;;;-1:-1:-1;;;41000:65:0;;13276:2:1;41000:65:0;;;13258:21:1;13315:2;13295:18;;;13288:30;13354;13334:18;;;13327:58;13402:18;;41000:65:0;13074:352:1;41000:65:0;-1:-1:-1;;;;;41140:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41197:35:0;;;;;;:31;:35;;;;;;;;41196:36;41140:92;41114:1147;;;41319:20;;41309:6;:30;;41275:169;;;;-1:-1:-1;;;41275:169:0;;13633:2:1;41275:169:0;;;13615:21:1;13672:2;13652:18;;;13645:30;13711:34;13691:18;;;13684:62;-1:-1:-1;;;13762:18:1;;;13755:51;13823:19;;41275:169:0;13431:417:1;41275:169:0;41527:9;;-1:-1:-1;;;;;11260:18:0;;11233:7;11260:18;;;;;;;;;;;41501:22;;:6;:22;:::i;:::-;:35;;41467:140;;;;-1:-1:-1;;;41467:140:0;;14055:2:1;41467:140:0;;;14037:21:1;14094:2;14074:18;;;14067:30;-1:-1:-1;;;14113:18:1;;;14106:49;14172:18;;41467:140:0;13853:343:1;41467:140:0;41114:1147;;;-1:-1:-1;;;;;41705:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41760:37:0;;;;;;:31;:37;;;;;;;;41759:38;41705:92;41679:582;;;41884:20;;41874:6;:30;;41840:170;;;;-1:-1:-1;;;41840:170:0;;14403:2:1;41840:170:0;;;14385:21:1;14442:2;14422:18;;;14415:30;14481:34;14461:18;;;14454:62;-1:-1:-1;;;14532:18:1;;;14525:52;14594:19;;41840:170:0;14201:418:1;41679:582:0;-1:-1:-1;;;;;42041:35:0;;;;;;:31;:35;;;;;;;;42036:225;;42161:9;;-1:-1:-1;;;;;11260:18:0;;11233:7;11260:18;;;;;;;;;;;42135:22;;:6;:22;:::i;:::-;:35;;42101:140;;;;-1:-1:-1;;;42101:140:0;;14055:2:1;42101:140:0;;;14037:21:1;14094:2;14074:18;;;14067:30;-1:-1:-1;;;14113:18:1;;;14106:49;14172:18;;42101:140:0;13853:343:1;42101:140:0;42337:4;42288:28;11260:18;;;;;;;;;;;42395;;42371:42;;;;;;;42444:35;;-1:-1:-1;42468:11:0;;;;;;;42444:35;:61;;;;-1:-1:-1;42497:8:0;;-1:-1:-1;;;42497:8:0;;;;42496:9;42444:61;:110;;;;-1:-1:-1;;;;;;42523:31:0;;;;;;:25;:31;;;;;;;;42522:32;42444:110;:153;;;;-1:-1:-1;;;;;;42572:25:0;;;;;;:19;:25;;;;;;;;42571:26;42444:153;:194;;;;-1:-1:-1;;;;;;42615:23:0;;;;;;:19;:23;;;;;;;;42614:24;42444:194;42426:326;;;42665:8;:15;;-1:-1:-1;;;;42665:15:0;-1:-1:-1;;;42665:15:0;;;42697:10;:8;:10::i;:::-;42724:8;:16;;-1:-1:-1;;;;42724:16:0;;;42426:326;42780:8;;-1:-1:-1;;;;;42890:25:0;;42764:12;42890:25;;;:19;:25;;;;;;42780:8;-1:-1:-1;;;42780:8:0;;;;;42779:9;;42890:25;;:52;;-1:-1:-1;;;;;;42919:23:0;;;;;;:19;:23;;;;;;;;42890:52;42886:100;;;-1:-1:-1;42969:5:0;42886:100;42998:12;43103:7;43099:969;;;-1:-1:-1;;;;;43155:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43204:1;43188:13;;:17;43155:50;43151:768;;;43233:34;43263:3;43233:25;43244:13;;43233:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43226:41;;43336:13;;43316:16;;43309:4;:23;;;;:::i;:::-;43308:41;;;;:::i;:::-;43286:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43406:13:0;;43392:10;;43385:17;;:4;:17;:::i;:::-;43384:35;;;;:::i;:::-;43368:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43488:13:0;;43468:16;;43461:23;;:4;:23;:::i;:::-;43460:41;;;;:::i;:::-;43438:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;43151:768:0;;-1:-1:-1;43151:768:0;;-1:-1:-1;;;;;43563:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43613:1;43598:12;;:16;43563:51;43559:360;;;43642:33;43671:3;43642:24;43653:12;;43642:6;:10;;:24;;;;:::i;:33::-;43635:40;;43743:12;;43724:15;;43717:4;:22;;;;:::i;:::-;43716:39;;;;:::i;:::-;43694:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43811:12:0;;43798:9;;43791:16;;:4;:16;:::i;:::-;43790:33;;;;:::i;:::-;43774:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43891:12:0;;43872:15;;43865:22;;:4;:22;:::i;:::-;43864:39;;;;:::i;:::-;43842:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43559:360:0;43939:8;;43935:91;;43968:42;43984:4;43998;44005;43968:15;:42::i;:::-;44042:14;44052:4;44042:14;;:::i;:::-;;;43099:969;44080:33;44096:4;44102:2;44106:6;44080:15;:33::i;:::-;40268:3853;;;;40155:3966;;;:::o;3630:191::-;3723:6;;;-1:-1:-1;;;;;3740:17:0;;;-1:-1:-1;;;;;;3740:17:0;;;;;;;3773:40;;3723:6;;;3740:17;3723:6;;3773:40;;3704:16;;3773:40;3693:128;3630:191;:::o;39421:188::-;-1:-1:-1;;;;;39504:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39504:39:0;;;;;;;;;;39561:40;;39504:39;;:31;39561:40;;;39421:188;;:::o;15208:733::-;-1:-1:-1;;;;;15348:20:0;;15340:70;;;;-1:-1:-1;;;15340:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15429:23:0;;15421:71;;;;-1:-1:-1;;;15421:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15589:17:0;;15565:21;15589:17;;;;;;;;;;;15625:23;;;;15617:74;;;;-1:-1:-1;;;15617:74:0;;14956:2:1;15617:74:0;;;14938:21:1;14995:2;14975:18;;;14968:30;15034:34;15014:18;;;15007:62;-1:-1:-1;;;15085:18:1;;;15078:36;15131:19;;15617:74:0;14754:402:1;15617:74:0;-1:-1:-1;;;;;15727:17:0;;;:9;:17;;;;;;;;;;;15747:22;;;15727:42;;15791:20;;;;;;;;:30;;15763:6;;15727:9;15791:30;;15763:6;;15791:30;:::i;:::-;;;;;;;;15856:9;-1:-1:-1;;;;;15839:35:0;15848:6;-1:-1:-1;;;;;15839:35:0;;15867:6;15839:35;;;;3294:25:1;;3282:2;3267:18;;3148:177;15839:35:0;;;;;;;;15329:612;15208:733;;;:::o;45528:1756::-;45611:4;45567:23;11260:18;;;;;;;;;;;45567:50;;45628:25;45724:12;;45690:18;;45656;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;45628:108;-1:-1:-1;45747:12:0;45776:20;;;:46;;-1:-1:-1;45800:22:0;;45776:46;45772:85;;;45839:7;;;45528:1756::o;45772:85::-;45891:18;;:23;;45912:2;45891:23;:::i;:::-;45873:15;:41;45869:115;;;45949:18;;:23;;45970:2;45949:23;:::i;:::-;45931:41;;45869:115;46045:23;46158:1;46125:17;46090:18;;46072:15;:36;;;;:::i;:::-;46071:71;;;;:::i;:::-;:88;;;;:::i;:::-;46045:114;-1:-1:-1;46170:26:0;46199:36;:15;46045:114;46199:19;:36::i;:::-;46170:65;-1:-1:-1;46276:21:0;46310:36;46170:65;46310:16;:36::i;:::-;46359:18;46380:44;:21;46406:17;46380:25;:44::i;:::-;46359:65;;46437:23;46463:81;46516:17;46463:34;46478:18;;46463:10;:14;;:34;;;;:::i;:81::-;46437:107;;46555:17;46575:51;46608:17;46575:28;46590:12;;46575:10;:14;;:28;;;;:::i;:51::-;46555:71;-1:-1:-1;46639:23:0;46555:71;46665:28;46678:15;46665:10;:28;:::i;:::-;:40;;;;:::i;:::-;46739:1;46718:18;:22;;;46751:18;:22;;;46784:12;:16;;;46835:9;;46827:45;;46639:66;;-1:-1:-1;;;;;;46835:9:0;;46858;;46827:45;46739:1;46827:45;46858:9;46835;46827:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46813:59:0;;-1:-1:-1;;46889:19:0;;;;;:42;;;46930:1;46912:15;:19;46889:42;46885:278;;;46948:46;46961:15;46978;46948:12;:46::i;:::-;47118:18;;47014:137;;;15573:25:1;;;15629:2;15614:18;;15607:34;;;15657:18;;;15650:34;;;;47014:137:0;;;;;;15561:2:1;47014:137:0;;;46885:278;47197:15;;47189:87;;-1:-1:-1;;;;;47197:15:0;;;;47240:21;;47189:87;;;;47240:21;47197:15;47189:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45528:1756:0:o;22517:98::-;22575:7;22602:5;22606:1;22602;:5;:::i;:::-;22595:12;22517:98;-1:-1:-1;;;22517:98:0:o;22916:::-;22974:7;23001:5;23005:1;23001;:5;:::i;22160:98::-;22218:7;22245:5;22249:1;22245;:5;:::i;44129:589::-;44279:16;;;44293:1;44279:16;;;;;;;;44255:21;;44279:16;;;;;;;;;;-1:-1:-1;44279:16:0;44255:40;;44324:4;44306;44311:1;44306:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44306:23:0;;;-1:-1:-1;;;;;44306:23:0;;;;;44350:15;-1:-1:-1;;;;;44350:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44340:4;44345:1;44340:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44340:32:0;;;-1:-1:-1;;;;;44340:32:0;;;;;44385:62;44402:4;44417:15;44435:11;44385:8;:62::i;:::-;44486:224;;-1:-1:-1;;;44486:224:0;;-1:-1:-1;;;;;44486:15:0;:66;;;;:224;;44567:11;;44593:1;;44637:4;;44664;;44684:15;;44486:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44184:534;44129:589;:::o;45003:517::-;45151:62;45168:4;45183:15;45201:11;45151:8;:62::i;:::-;45256:256;;-1:-1:-1;;;45256:256:0;;45328:4;45256:256;;;17277:34:1;17327:18;;;17320:34;;;45374:1:0;17370:18:1;;;17363:34;;;17413:18;;;17406:34;32290:6:0;17456:19:1;;;17449:44;45486:15:0;17509:19:1;;;17502:35;45256:15:0;-1:-1:-1;;;;;45256:31:0;;;;45295:9;;17211:19:1;;45256:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45003:517;;:::o;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1547:597::-;1659:4;1688:2;1717;1706:9;1699:21;1749:6;1743:13;1792:6;1787:2;1776:9;1772:18;1765:34;1817:1;1827:140;1841:6;1838:1;1835:13;1827:140;;;1936:14;;;1932:23;;1926:30;1902:17;;;1921:2;1898:26;1891:66;1856:10;;1827:140;;;1985:6;1982:1;1979:13;1976:91;;;2055:1;2050:2;2041:6;2030:9;2026:22;2022:31;2015:42;1976:91;-1:-1:-1;2128:2:1;2107:15;-1:-1:-1;;2103:29:1;2088:45;;;;2135:2;2084:54;;1547:597;-1:-1:-1;;;1547:597:1:o;2149:315::-;2217:6;2225;2278:2;2266:9;2257:7;2253:23;2249:32;2246:52;;;2294:1;2291;2284:12;2246:52;2333:9;2320:23;2352:31;2377:5;2352:31;:::i;:::-;2402:5;2454:2;2439:18;;;;2426:32;;-1:-1:-1;;;2149:315:1:o;2661:247::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;3330:180::-;3389:6;3442:2;3430:9;3421:7;3417:23;3413:32;3410:52;;;3458:1;3455;3448:12;3410:52;-1:-1:-1;3481:23:1;;3330:180;-1:-1:-1;3330:180:1:o;3515:456::-;3592:6;3600;3608;3661:2;3649:9;3640:7;3636:23;3632:32;3629:52;;;3677:1;3674;3667:12;3629:52;3716:9;3703:23;3735:31;3760:5;3735:31;:::i;:::-;3785:5;-1:-1:-1;3842:2:1;3827:18;;3814:32;3855:33;3814:32;3855:33;:::i;:::-;3515:456;;3907:7;;-1:-1:-1;;;3961:2:1;3946:18;;;;3933:32;;3515:456::o;4373:160::-;4438:20;;4494:13;;4487:21;4477:32;;4467:60;;4523:1;4520;4513:12;4538:315;4603:6;4611;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4719:9;4706:23;4738:31;4763:5;4738:31;:::i;:::-;4788:5;-1:-1:-1;4812:35:1;4843:2;4828:18;;4812:35;:::i;:::-;4802:45;;4538:315;;;;;:::o;4858:316::-;4935:6;4943;4951;5004:2;4992:9;4983:7;4979:23;4975:32;4972:52;;;5020:1;5017;5010:12;4972:52;-1:-1:-1;;5043:23:1;;;5113:2;5098:18;;5085:32;;-1:-1:-1;5164:2:1;5149:18;;;5136:32;;4858:316;-1:-1:-1;4858:316:1:o;5179:180::-;5235:6;5288:2;5276:9;5267:7;5263:23;5259:32;5256:52;;;5304:1;5301;5294:12;5256:52;5327:26;5343:9;5327:26;:::i;5364:388::-;5432:6;5440;5493:2;5481:9;5472:7;5468:23;5464:32;5461:52;;;5509:1;5506;5499:12;5461:52;5548:9;5535:23;5567:31;5592:5;5567:31;:::i;:::-;5617:5;-1:-1:-1;5674:2:1;5659:18;;5646:32;5687:33;5646:32;5687:33;:::i;:::-;5739:7;5729:17;;;5364:388;;;;;:::o;5757:356::-;5959:2;5941:21;;;5978:18;;;5971:30;6037:34;6032:2;6017:18;;6010:62;6104:2;6089:18;;5757:356::o;6118:127::-;6179:10;6174:3;6170:20;6167:1;6160:31;6210:4;6207:1;6200:15;6234:4;6231:1;6224:15;6250:127;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:135;6421:3;-1:-1:-1;;6442:17:1;;6439:43;;;6462:18;;:::i;:::-;-1:-1:-1;6509:1:1;6498:13;;6382:135::o;6522:380::-;6601:1;6597:12;;;;6644;;;6665:61;;6719:4;6711:6;6707:17;6697:27;;6665:61;6772:2;6764:6;6761:14;6741:18;6738:38;6735:161;;;6818:10;6813:3;6809:20;6806:1;6799:31;6853:4;6850:1;6843:15;6881:4;6878:1;6871:15;6735:161;;6522:380;;;:::o;6907:168::-;6947:7;7013:1;7009;7005:6;7001:14;6998:1;6995:21;6990:1;6983:9;6976:17;6972:45;6969:71;;;7020:18;;:::i;:::-;-1:-1:-1;7060:9:1;;6907:168::o;7080:217::-;7120:1;7146;7136:132;;7190:10;7185:3;7181:20;7178:1;7171:31;7225:4;7222:1;7215:15;7253:4;7250:1;7243:15;7136:132;-1:-1:-1;7282:9:1;;7080:217::o;8127:128::-;8167:3;8198:1;8194:6;8191:1;8188:13;8185:39;;;8204:18;;:::i;:::-;-1:-1:-1;8240:9:1;;8127:128::o;11913:401::-;12115:2;12097:21;;;12154:2;12134:18;;;12127:30;12193:34;12188:2;12173:18;;12166:62;-1:-1:-1;;;12259:2:1;12244:18;;12237:35;12304:3;12289:19;;11913:401::o;12319:399::-;12521:2;12503:21;;;12560:2;12540:18;;;12533:30;12599:34;12594:2;12579:18;;12572:62;-1:-1:-1;;;12665:2:1;12650:18;;12643:33;12708:3;12693:19;;12319:399::o;14624:125::-;14664:4;14692:1;14689;14686:8;14683:34;;;14697:18;;:::i;:::-;-1:-1:-1;14734:9:1;;14624:125::o;15695:251::-;15765:6;15818:2;15806:9;15797:7;15793:23;15789:32;15786:52;;;15834:1;15831;15824:12;15786:52;15866:9;15860:16;15885:31;15910:5;15885:31;:::i;15951:980::-;16213:4;16261:3;16250:9;16246:19;16292:6;16281:9;16274:25;16318:2;16356:6;16351:2;16340:9;16336:18;16329:34;16399:3;16394:2;16383:9;16379:18;16372:31;16423:6;16458;16452:13;16489:6;16481;16474:22;16527:3;16516:9;16512:19;16505:26;;16566:2;16558:6;16554:15;16540:29;;16587:1;16597:195;16611:6;16608:1;16605:13;16597:195;;;16676:13;;-1:-1:-1;;;;;16672:39:1;16660:52;;16767:15;;;;16732:12;;;;16708:1;16626:9;16597:195;;;-1:-1:-1;;;;;;;16848:32:1;;;;16843:2;16828:18;;16821:60;-1:-1:-1;;;16912:3:1;16897:19;16890:35;16809:3;15951:980;-1:-1:-1;;;15951:980:1:o;17548:306::-;17636:6;17644;17652;17705:2;17693:9;17684:7;17680:23;17676:32;17673:52;;;17721:1;17718;17711:12;17673:52;17750:9;17744:16;17734:26;;17800:2;17789:9;17785:18;17779:25;17769:35;;17844:2;17833:9;17829:18;17823:25;17813:35;;17548:306;;;;;:::o

Swarm Source

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