ETH Price: $2,458.20 (+3.91%)

Token

DogPound (Pound)
 

Overview

Max Total Supply

1,000,000,000 Pound

Holders

147

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,936,527.690835464080521704 Pound

Value
$0.00
0x640b0994a69d5977919b12e7ad6029e0ed652e63
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:
DogPound

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
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 => 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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

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

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

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

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

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

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

/* 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 {IUniswapV2Pair} from "./IUniswapV2Pair.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 DogPound 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 public DogPoundWallet;
    address public marketingWallet;
    address public devWallet;

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

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 private buyTotalFees;
	uint256 private buyDogPoundFee;
    uint256 private buyMarketingFee;
    uint256 private buyLiquidityFee;
    uint256 private buyDevFee;

    uint256 private sellTotalFees;
	uint256 private sellDogPoundFee;
    uint256 private sellMarketingFee;
    uint256 private sellLiquidityFee;
    uint256 private sellDevFee;

	uint256 public tokensForDogPound;
    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("DogPound", "Pound") {
        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 _buyDogPoundFee = 2;
        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 2;

		uint256 _sellDogPoundFee = 2;
        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 10000000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

		DogPoundWallet = address(0x6734398D9f4D9D37e16973df064368856BFb52F7); // set as DogPound wallet
        marketingWallet = address(0x6734398D9f4D9D37e16973df064368856BFb52F7); // set as marketing wallet
        devWallet = address(0x5A41b482C9410acAb930efe7313D5191473B1958); // 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;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        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 _DogPoundFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_DogPoundFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
		buyDogPoundFee = _DogPoundFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyDogPoundFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _DogPoundFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_DogPoundFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		sellDogPoundFee = _DogPoundFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellDogPoundFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    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 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 (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //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);
				tokensForDogPound += (fees * sellDogPoundFee) / sellTotalFees;
                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);
				tokensForDogPound += (fees * buyDogPoundFee) / buyTotalFees;
                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 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
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDogPound + 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 ethForDogPound = ethBalance.mul(tokensForDogPound).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDogPound - ethForMarketing - ethForDev;

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

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


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

        (success, ) = address(DogPoundWallet).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"},{"inputs":[],"name":"DogPoundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"tokensForDogPound","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":"_DogPoundFee","type":"uint256"},{"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":"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":"_DogPoundFee","type":"uint256"},{"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"}]

60c0604052600c805462ffffff191662010001179055600e805460ff191660011790553480156200002f57600080fd5b506040805180820182526008815267111bd9d41bdd5b9960c21b602080830191825283518085019094526005845264141bdd5b9960da1b9084015281519192916200007d91600391620006c0565b50805162000093906004906020840190620006c0565b505050620000b0620000aa6200040d60201b60201c565b62000411565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d281600162000463565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000143919062000766565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000191573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b7919062000766565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000205573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022b919062000766565b6001600160a01b031660a08190526200024690600162000463565b60a05162000256906001620004dd565b6a084595161401484a0000006009556a108b2a2c28029094000000600b5560026001600082808383826b033b2e3c9fd0803ce80000006127106200029c82600a620007ae565b620002a89190620007d0565b600a5560108990556011889055601287905560138690558587620002cd8a8c620007f3565b620002d99190620007f3565b620002e59190620007f3565b600f55601585905560168490556017839055601882905581836200030a8688620007f3565b620003169190620007f3565b620003229190620007f3565b601455600680546001600160a01b0319908116736734398d9f4d9d37e16973df064368856bfb52f790811790925560078054821690921790915560088054909116735a41b482c9410acab930efe7313d5191473b19581790556200039a620003926005546001600160a01b031690565b600162000531565b620003a730600162000531565b620003b661dead600162000531565b620003d5620003cd6005546001600160a01b031690565b600162000463565b620003e230600162000463565b620003f161dead600162000463565b620003fd3382620005db565b505050505050505050506200084b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b25760405162461bcd60e51b815260206004820181905260248201526000805160206200316783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057c5760405162461bcd60e51b81526020600482018190526024820152600080516020620031678339815191526044820152606401620004a9565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006335760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004a9565b8060026000828254620006479190620007f3565b90915550506001600160a01b0382166000908152602081905260408120805483929062000676908490620007f3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006ce906200080e565b90600052602060002090601f016020900481019282620006f257600085556200073d565b82601f106200070d57805160ff19168380011785556200073d565b828001600101855582156200073d579182015b828111156200073d57825182559160200191906001019062000720565b506200074b9291506200074f565b5090565b5b808211156200074b576000815560010162000750565b6000602082840312156200077957600080fd5b81516001600160a01b03811681146200079157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007cb57620007cb62000798565b500290565b600082620007ee57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000809576200080962000798565b500190565b600181811c908216806200082357607f821691505b602082108114156200084557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516128be620008a9600039600081816104ab01528181610d4601526115ec01526000818161032a015281816115ae01528181612211015281816122ca015281816123060152818161238001526123e801526128be6000f3fe6080604052600436106102815760003560e01c806375f0a8741161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e146107bd578063e2f4560514610803578063e7ad9fcd14610819578063e884f26014610839578063f2fde38b1461084e578063f8b45b051461086e57600080fd5b8063bbc0c7421461070e578063c02466681461072d578063c18bc1951461074d578063c876d0b91461076d578063c8c8ebe414610787578063d257b34f1461079d57600080fd5b806395d89b411161011357806395d89b41146106535780639a7a23d6146106685780639fccce3214610688578063a457c2d71461069e578063a9059cbb146106be578063b62496f5146106de57600080fd5b806375f0a874146105c05780638a8c523c146105e05780638da5cb5b146105f55780638ea5220f14610613578063924de9b71461063357600080fd5b80632e6ed7ef116101f35780634fbee193116101ac5780634fbee193146104e75780636ddd17131461052057806370a0823114610540578063715018a614610576578063751039fc1461058b5780637571336a146105a057600080fd5b80632e6ed7ef1461041d578063313ce5671461043d578063395093511461045957806342a3271d1461047957806349bd5a5e146104995780634a62bb65146104cd57600080fd5b80631a8145bb116102455780631a8145bb146103835780631f3fed8f14610399578063203e727e146103af57806323b872dd146103d15780632691a48e146103f157806327c8f8351461040757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a2610884565b6040516102af9190612460565b60405180910390f35b3480156102c457600080fd5b506102d86102d33660046124ca565b610916565b60405190151581526020016102af565b3480156102f457600080fd5b506102d86103033660046124f6565b601e6020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b50610375601b5481565b3480156103a557600080fd5b50610375601a5481565b3480156103bb57600080fd5b506103cf6103ca366004612513565b61092c565b005b3480156103dd57600080fd5b506102d86103ec36600461252c565b610a12565b3480156103fd57600080fd5b5061037560195481565b34801561041357600080fd5b5061034c61dead81565b34801561042957600080fd5b506103cf61043836600461256d565b610abc565b34801561044957600080fd5b50604051601281526020016102af565b34801561046557600080fd5b506102d86104743660046124ca565b610b84565b34801561048557600080fd5b5060065461034c906001600160a01b031681565b3480156104a557600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104d957600080fd5b50600c546102d89060ff1681565b3480156104f357600080fd5b506102d86105023660046124f6565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561052c57600080fd5b50600c546102d89062010000900460ff1681565b34801561054c57600080fd5b5061037561055b3660046124f6565b6001600160a01b031660009081526020819052604090205490565b34801561058257600080fd5b506103cf610bc0565b34801561059757600080fd5b506102d8610bf6565b3480156105ac57600080fd5b506103cf6105bb3660046125af565b610c33565b3480156105cc57600080fd5b5060075461034c906001600160a01b031681565b3480156105ec57600080fd5b506103cf610c88565b34801561060157600080fd5b506005546001600160a01b031661034c565b34801561061f57600080fd5b5060085461034c906001600160a01b031681565b34801561063f57600080fd5b506103cf61064e3660046125e4565b610cc5565b34801561065f57600080fd5b506102a2610d0b565b34801561067457600080fd5b506103cf6106833660046125af565b610d1a565b34801561069457600080fd5b50610375601c5481565b3480156106aa57600080fd5b506102d86106b93660046124ca565b610dfa565b3480156106ca57600080fd5b506102d86106d93660046124ca565b610e93565b3480156106ea57600080fd5b506102d86106f93660046124f6565b601f6020526000908152604090205460ff1681565b34801561071a57600080fd5b50600c546102d890610100900460ff1681565b34801561073957600080fd5b506103cf6107483660046125af565b610ea0565b34801561075957600080fd5b506103cf610768366004612513565b610f29565b34801561077957600080fd5b50600e546102d89060ff1681565b34801561079357600080fd5b5061037560095481565b3480156107a957600080fd5b506102d86107b8366004612513565b610ffa565b3480156107c957600080fd5b506103756107d83660046125ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080f57600080fd5b50610375600a5481565b34801561082557600080fd5b506103cf61083436600461256d565b611151565b34801561084557600080fd5b506102d861121a565b34801561085a57600080fd5b506103cf6108693660046124f6565b611257565b34801561087a57600080fd5b50610375600b5481565b60606003805461089390612638565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf90612638565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b60006109233384846112f2565b50600192915050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b815260040161095690612673565b60405180910390fd5b670de0b6b3a76400006103e861097460025490565b61097f9060056126be565b61098991906126dd565b61099391906126dd565b8110156109fa5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610956565b610a0c81670de0b6b3a76400006126be565b60095550565b6000610a1f848484611416565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610aa45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610956565b610ab185338584036112f2565b506001949350505050565b6005546001600160a01b03163314610ae65760405162461bcd60e51b815260040161095690612673565b600a8183610af486886126ff565b610afe91906126ff565b610b0891906126ff565b1115610b475760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610956565b60108490556011839055601282905560138190558082610b6785876126ff565b610b7191906126ff565b610b7b91906126ff565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610923918590610bbb9086906126ff565b6112f2565b6005546001600160a01b03163314610bea5760405162461bcd60e51b815260040161095690612673565b610bf46000611cca565b565b6005546000906001600160a01b03163314610c235760405162461bcd60e51b815260040161095690612673565b50600c805460ff19169055600190565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260040161095690612673565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cb25760405162461bcd60e51b815260040161095690612673565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610cef5760405162461bcd60e51b815260040161095690612673565b600c8054911515620100000262ff000019909216919091179055565b60606004805461089390612638565b6005546001600160a01b03163314610d445760405162461bcd60e51b815260040161095690612673565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610dec5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610956565b610df68282611d1c565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e7c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610956565b610e8933858584036112f2565b5060019392505050565b6000610923338484611416565b6005546001600160a01b03163314610eca5760405162461bcd60e51b815260040161095690612673565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f535760405162461bcd60e51b815260040161095690612673565b670de0b6b3a76400006103e8610f6860025490565b610f739060056126be565b610f7d91906126dd565b610f8791906126dd565b811015610fe25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610956565b610ff481670de0b6b3a76400006126be565b600b5550565b6005546000906001600160a01b031633146110275760405162461bcd60e51b815260040161095690612673565b620186a061103460025490565b61103f9060016126be565b61104991906126dd565b8210156110b65760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610956565b6103e86110c260025490565b6110cd9060056126be565b6110d791906126dd565b8211156111435760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610956565b50600a81905560015b919050565b6005546001600160a01b0316331461117b5760405162461bcd60e51b815260040161095690612673565b600a818361118986886126ff565b61119391906126ff565b61119d91906126ff565b11156111dd5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610956565b601584905560168390556017829055601881905580826111fd85876126ff565b61120791906126ff565b61121191906126ff565b60145550505050565b6005546000906001600160a01b031633146112475760405162461bcd60e51b815260040161095690612673565b50600e805460ff19169055600190565b6005546001600160a01b031633146112815760405162461bcd60e51b815260040161095690612673565b6001600160a01b0381166112e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610956565b6112ef81611cca565b50565b6001600160a01b0383166113545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610956565b6001600160a01b0382166113b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610956565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661143c5760405162461bcd60e51b815260040161095690612717565b6001600160a01b0382166114625760405162461bcd60e51b81526004016109569061275c565b806114785761147383836000611d70565b505050565b600c5460ff1615611935576005546001600160a01b038481169116148015906114af57506005546001600160a01b03838116911614155b80156114c357506001600160a01b03821615155b80156114da57506001600160a01b03821661dead14155b80156114f05750600554600160a01b900460ff16155b1561193557600c54610100900460ff16611588576001600160a01b0383166000908152601d602052604090205460ff168061154357506001600160a01b0382166000908152601d602052604090205460ff165b6115885760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610956565b600e5460ff16156116cf576005546001600160a01b038381169116148015906115e357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561162157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156116cf57326000908152600d602052604090205443116116bc5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610956565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff16801561171057506001600160a01b0382166000908152601e602052604090205460ff16155b156117f4576009548111156117855760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610956565b600b546001600160a01b0383166000908152602081905260409020546117ab90836126ff565b11156117ef5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610956565b611935565b6001600160a01b0382166000908152601f602052604090205460ff16801561183557506001600160a01b0383166000908152601e602052604090205460ff16155b156118ab576009548111156117ef5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610956565b6001600160a01b0382166000908152601e602052604090205460ff1661193557600b546001600160a01b0383166000908152602081905260409020546118f190836126ff565b11156119355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610956565b30600090815260208190526040902054600a54811080159081906119615750600c5462010000900460ff165b80156119775750600554600160a01b900460ff16155b801561199c57506001600160a01b0385166000908152601f602052604090205460ff16155b80156119c157506001600160a01b0385166000908152601d602052604090205460ff16155b80156119e657506001600160a01b0384166000908152601d602052604090205460ff16155b15611a14576005805460ff60a01b1916600160a01b179055611a06611ec5565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611a6257506001600160a01b0385166000908152601d602052604090205460ff165b15611a6b575060005b60008115611cb6576001600160a01b0386166000908152601f602052604090205460ff168015611a9d57506000601454115b15611b8b57611ac26064611abc6014548861218f90919063ffffffff16565b906121a2565b905060145460155482611ad591906126be565b611adf91906126dd565b60196000828254611af091906126ff565b9091555050601454601754611b0590836126be565b611b0f91906126dd565b601b6000828254611b2091906126ff565b9091555050601454601854611b3590836126be565b611b3f91906126dd565b601c6000828254611b5091906126ff565b9091555050601454601654611b6590836126be565b611b6f91906126dd565b601a6000828254611b8091906126ff565b90915550611c989050565b6001600160a01b0387166000908152601f602052604090205460ff168015611bb557506000600f54115b15611c9857611bd46064611abc600f548861218f90919063ffffffff16565b9050600f5460105482611be791906126be565b611bf191906126dd565b60196000828254611c0291906126ff565b9091555050600f54601254611c1790836126be565b611c2191906126dd565b601b6000828254611c3291906126ff565b9091555050600f54601354611c4790836126be565b611c5191906126dd565b601c6000828254611c6291906126ff565b9091555050600f54601154611c7790836126be565b611c8191906126dd565b601a6000828254611c9291906126ff565b90915550505b8015611ca957611ca9873083611d70565b611cb3818661279f565b94505b611cc1878787611d70565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d965760405162461bcd60e51b815260040161095690612717565b6001600160a01b038216611dbc5760405162461bcd60e51b81526004016109569061275c565b6001600160a01b03831660009081526020819052604090205481811015611e345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610956565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e6b9084906126ff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b54601954611eef91906126ff565b611ef991906126ff565b611f0391906126ff565b90506000821580611f12575081155b15611f1c57505050565b600a54611f2a9060146126be565b831115611f4257600a54611f3f9060146126be565b92505b6000600283601b5486611f5591906126be565b611f5f91906126dd565b611f6991906126dd565b90506000611f7785836121ae565b905047611f83826121ba565b6000611f8f47836121ae565b90506000611fac87611abc6019548561218f90919063ffffffff16565b90506000611fc988611abc601a548661218f90919063ffffffff16565b90506000611fe689611abc601c548761218f90919063ffffffff16565b905060008183611ff6868861279f565b612000919061279f565b61200a919061279f565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461206c576040519150601f19603f3d011682016040523d82523d6000602084013e612071565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d80600081146120c1576040519150601f19603f3d011682016040523d82523d6000602084013e6120c6565b606091505b509099505087158015906120da5750600081115b1561212d576120e9888261237a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461217a576040519150601f19603f3d011682016040523d82523d6000602084013e61217f565b606091505b5050505050505050505050505050565b600061219b82846126be565b9392505050565b600061219b82846126dd565b600061219b828461279f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121ef576121ef6127b6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229191906127cc565b816001815181106122a4576122a46127b6565b60200260200101906001600160a01b031690816001600160a01b0316815250506122ef307f0000000000000000000000000000000000000000000000000000000000000000846112f2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123449085906000908690309042906004016127e9565b600060405180830381600087803b15801561235e57600080fd5b505af1158015612372573d6000803e3d6000fd5b505050505050565b6123a5307f0000000000000000000000000000000000000000000000000000000000000000846112f2565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612434573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612459919061285a565b5050505050565b600060208083528351808285015260005b8181101561248d57858101830151858201604001528201612471565b8181111561249f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146112ef57600080fd5b600080604083850312156124dd57600080fd5b82356124e8816124b5565b946020939093013593505050565b60006020828403121561250857600080fd5b813561219b816124b5565b60006020828403121561252557600080fd5b5035919050565b60008060006060848603121561254157600080fd5b833561254c816124b5565b9250602084013561255c816124b5565b929592945050506040919091013590565b6000806000806080858703121561258357600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461114c57600080fd5b600080604083850312156125c257600080fd5b82356125cd816124b5565b91506125db6020840161259f565b90509250929050565b6000602082840312156125f657600080fd5b61219b8261259f565b6000806040838503121561261257600080fd5b823561261d816124b5565b9150602083013561262d816124b5565b809150509250929050565b600181811c9082168061264c57607f821691505b6020821081141561266d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156126d8576126d86126a8565b500290565b6000826126fa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612712576127126126a8565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156127b1576127b16126a8565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156127de57600080fd5b815161219b816124b5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128395784516001600160a01b031683529383019391830191600101612814565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561286f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209db81e107ea848f1709630bca21798686dd88e9a74014f1a44207e1dbf92747764736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c806375f0a8741161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e146107bd578063e2f4560514610803578063e7ad9fcd14610819578063e884f26014610839578063f2fde38b1461084e578063f8b45b051461086e57600080fd5b8063bbc0c7421461070e578063c02466681461072d578063c18bc1951461074d578063c876d0b91461076d578063c8c8ebe414610787578063d257b34f1461079d57600080fd5b806395d89b411161011357806395d89b41146106535780639a7a23d6146106685780639fccce3214610688578063a457c2d71461069e578063a9059cbb146106be578063b62496f5146106de57600080fd5b806375f0a874146105c05780638a8c523c146105e05780638da5cb5b146105f55780638ea5220f14610613578063924de9b71461063357600080fd5b80632e6ed7ef116101f35780634fbee193116101ac5780634fbee193146104e75780636ddd17131461052057806370a0823114610540578063715018a614610576578063751039fc1461058b5780637571336a146105a057600080fd5b80632e6ed7ef1461041d578063313ce5671461043d578063395093511461045957806342a3271d1461047957806349bd5a5e146104995780634a62bb65146104cd57600080fd5b80631a8145bb116102455780631a8145bb146103835780631f3fed8f14610399578063203e727e146103af57806323b872dd146103d15780632691a48e146103f157806327c8f8351461040757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a2610884565b6040516102af9190612460565b60405180910390f35b3480156102c457600080fd5b506102d86102d33660046124ca565b610916565b60405190151581526020016102af565b3480156102f457600080fd5b506102d86103033660046124f6565b601e6020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b50610375601b5481565b3480156103a557600080fd5b50610375601a5481565b3480156103bb57600080fd5b506103cf6103ca366004612513565b61092c565b005b3480156103dd57600080fd5b506102d86103ec36600461252c565b610a12565b3480156103fd57600080fd5b5061037560195481565b34801561041357600080fd5b5061034c61dead81565b34801561042957600080fd5b506103cf61043836600461256d565b610abc565b34801561044957600080fd5b50604051601281526020016102af565b34801561046557600080fd5b506102d86104743660046124ca565b610b84565b34801561048557600080fd5b5060065461034c906001600160a01b031681565b3480156104a557600080fd5b5061034c7f0000000000000000000000007213554c159a1e7b57b454bbe779aa0930b7ca5981565b3480156104d957600080fd5b50600c546102d89060ff1681565b3480156104f357600080fd5b506102d86105023660046124f6565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561052c57600080fd5b50600c546102d89062010000900460ff1681565b34801561054c57600080fd5b5061037561055b3660046124f6565b6001600160a01b031660009081526020819052604090205490565b34801561058257600080fd5b506103cf610bc0565b34801561059757600080fd5b506102d8610bf6565b3480156105ac57600080fd5b506103cf6105bb3660046125af565b610c33565b3480156105cc57600080fd5b5060075461034c906001600160a01b031681565b3480156105ec57600080fd5b506103cf610c88565b34801561060157600080fd5b506005546001600160a01b031661034c565b34801561061f57600080fd5b5060085461034c906001600160a01b031681565b34801561063f57600080fd5b506103cf61064e3660046125e4565b610cc5565b34801561065f57600080fd5b506102a2610d0b565b34801561067457600080fd5b506103cf6106833660046125af565b610d1a565b34801561069457600080fd5b50610375601c5481565b3480156106aa57600080fd5b506102d86106b93660046124ca565b610dfa565b3480156106ca57600080fd5b506102d86106d93660046124ca565b610e93565b3480156106ea57600080fd5b506102d86106f93660046124f6565b601f6020526000908152604090205460ff1681565b34801561071a57600080fd5b50600c546102d890610100900460ff1681565b34801561073957600080fd5b506103cf6107483660046125af565b610ea0565b34801561075957600080fd5b506103cf610768366004612513565b610f29565b34801561077957600080fd5b50600e546102d89060ff1681565b34801561079357600080fd5b5061037560095481565b3480156107a957600080fd5b506102d86107b8366004612513565b610ffa565b3480156107c957600080fd5b506103756107d83660046125ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080f57600080fd5b50610375600a5481565b34801561082557600080fd5b506103cf61083436600461256d565b611151565b34801561084557600080fd5b506102d861121a565b34801561085a57600080fd5b506103cf6108693660046124f6565b611257565b34801561087a57600080fd5b50610375600b5481565b60606003805461089390612638565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf90612638565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b60006109233384846112f2565b50600192915050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b815260040161095690612673565b60405180910390fd5b670de0b6b3a76400006103e861097460025490565b61097f9060056126be565b61098991906126dd565b61099391906126dd565b8110156109fa5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610956565b610a0c81670de0b6b3a76400006126be565b60095550565b6000610a1f848484611416565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610aa45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610956565b610ab185338584036112f2565b506001949350505050565b6005546001600160a01b03163314610ae65760405162461bcd60e51b815260040161095690612673565b600a8183610af486886126ff565b610afe91906126ff565b610b0891906126ff565b1115610b475760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610956565b60108490556011839055601282905560138190558082610b6785876126ff565b610b7191906126ff565b610b7b91906126ff565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610923918590610bbb9086906126ff565b6112f2565b6005546001600160a01b03163314610bea5760405162461bcd60e51b815260040161095690612673565b610bf46000611cca565b565b6005546000906001600160a01b03163314610c235760405162461bcd60e51b815260040161095690612673565b50600c805460ff19169055600190565b6005546001600160a01b03163314610c5d5760405162461bcd60e51b815260040161095690612673565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cb25760405162461bcd60e51b815260040161095690612673565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610cef5760405162461bcd60e51b815260040161095690612673565b600c8054911515620100000262ff000019909216919091179055565b60606004805461089390612638565b6005546001600160a01b03163314610d445760405162461bcd60e51b815260040161095690612673565b7f0000000000000000000000007213554c159a1e7b57b454bbe779aa0930b7ca596001600160a01b0316826001600160a01b03161415610dec5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610956565b610df68282611d1c565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e7c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610956565b610e8933858584036112f2565b5060019392505050565b6000610923338484611416565b6005546001600160a01b03163314610eca5760405162461bcd60e51b815260040161095690612673565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f535760405162461bcd60e51b815260040161095690612673565b670de0b6b3a76400006103e8610f6860025490565b610f739060056126be565b610f7d91906126dd565b610f8791906126dd565b811015610fe25760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610956565b610ff481670de0b6b3a76400006126be565b600b5550565b6005546000906001600160a01b031633146110275760405162461bcd60e51b815260040161095690612673565b620186a061103460025490565b61103f9060016126be565b61104991906126dd565b8210156110b65760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610956565b6103e86110c260025490565b6110cd9060056126be565b6110d791906126dd565b8211156111435760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610956565b50600a81905560015b919050565b6005546001600160a01b0316331461117b5760405162461bcd60e51b815260040161095690612673565b600a818361118986886126ff565b61119391906126ff565b61119d91906126ff565b11156111dd5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610956565b601584905560168390556017829055601881905580826111fd85876126ff565b61120791906126ff565b61121191906126ff565b60145550505050565b6005546000906001600160a01b031633146112475760405162461bcd60e51b815260040161095690612673565b50600e805460ff19169055600190565b6005546001600160a01b031633146112815760405162461bcd60e51b815260040161095690612673565b6001600160a01b0381166112e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610956565b6112ef81611cca565b50565b6001600160a01b0383166113545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610956565b6001600160a01b0382166113b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610956565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661143c5760405162461bcd60e51b815260040161095690612717565b6001600160a01b0382166114625760405162461bcd60e51b81526004016109569061275c565b806114785761147383836000611d70565b505050565b600c5460ff1615611935576005546001600160a01b038481169116148015906114af57506005546001600160a01b03838116911614155b80156114c357506001600160a01b03821615155b80156114da57506001600160a01b03821661dead14155b80156114f05750600554600160a01b900460ff16155b1561193557600c54610100900460ff16611588576001600160a01b0383166000908152601d602052604090205460ff168061154357506001600160a01b0382166000908152601d602052604090205460ff165b6115885760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610956565b600e5460ff16156116cf576005546001600160a01b038381169116148015906115e357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561162157507f0000000000000000000000007213554c159a1e7b57b454bbe779aa0930b7ca596001600160a01b0316826001600160a01b031614155b156116cf57326000908152600d602052604090205443116116bc5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610956565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff16801561171057506001600160a01b0382166000908152601e602052604090205460ff16155b156117f4576009548111156117855760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610956565b600b546001600160a01b0383166000908152602081905260409020546117ab90836126ff565b11156117ef5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610956565b611935565b6001600160a01b0382166000908152601f602052604090205460ff16801561183557506001600160a01b0383166000908152601e602052604090205460ff16155b156118ab576009548111156117ef5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610956565b6001600160a01b0382166000908152601e602052604090205460ff1661193557600b546001600160a01b0383166000908152602081905260409020546118f190836126ff565b11156119355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610956565b30600090815260208190526040902054600a54811080159081906119615750600c5462010000900460ff165b80156119775750600554600160a01b900460ff16155b801561199c57506001600160a01b0385166000908152601f602052604090205460ff16155b80156119c157506001600160a01b0385166000908152601d602052604090205460ff16155b80156119e657506001600160a01b0384166000908152601d602052604090205460ff16155b15611a14576005805460ff60a01b1916600160a01b179055611a06611ec5565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611a6257506001600160a01b0385166000908152601d602052604090205460ff165b15611a6b575060005b60008115611cb6576001600160a01b0386166000908152601f602052604090205460ff168015611a9d57506000601454115b15611b8b57611ac26064611abc6014548861218f90919063ffffffff16565b906121a2565b905060145460155482611ad591906126be565b611adf91906126dd565b60196000828254611af091906126ff565b9091555050601454601754611b0590836126be565b611b0f91906126dd565b601b6000828254611b2091906126ff565b9091555050601454601854611b3590836126be565b611b3f91906126dd565b601c6000828254611b5091906126ff565b9091555050601454601654611b6590836126be565b611b6f91906126dd565b601a6000828254611b8091906126ff565b90915550611c989050565b6001600160a01b0387166000908152601f602052604090205460ff168015611bb557506000600f54115b15611c9857611bd46064611abc600f548861218f90919063ffffffff16565b9050600f5460105482611be791906126be565b611bf191906126dd565b60196000828254611c0291906126ff565b9091555050600f54601254611c1790836126be565b611c2191906126dd565b601b6000828254611c3291906126ff565b9091555050600f54601354611c4790836126be565b611c5191906126dd565b601c6000828254611c6291906126ff565b9091555050600f54601154611c7790836126be565b611c8191906126dd565b601a6000828254611c9291906126ff565b90915550505b8015611ca957611ca9873083611d70565b611cb3818661279f565b94505b611cc1878787611d70565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d965760405162461bcd60e51b815260040161095690612717565b6001600160a01b038216611dbc5760405162461bcd60e51b81526004016109569061275c565b6001600160a01b03831660009081526020819052604090205481811015611e345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610956565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e6b9084906126ff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eb791815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b54601954611eef91906126ff565b611ef991906126ff565b611f0391906126ff565b90506000821580611f12575081155b15611f1c57505050565b600a54611f2a9060146126be565b831115611f4257600a54611f3f9060146126be565b92505b6000600283601b5486611f5591906126be565b611f5f91906126dd565b611f6991906126dd565b90506000611f7785836121ae565b905047611f83826121ba565b6000611f8f47836121ae565b90506000611fac87611abc6019548561218f90919063ffffffff16565b90506000611fc988611abc601a548661218f90919063ffffffff16565b90506000611fe689611abc601c548761218f90919063ffffffff16565b905060008183611ff6868861279f565b612000919061279f565b61200a919061279f565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461206c576040519150601f19603f3d011682016040523d82523d6000602084013e612071565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d80600081146120c1576040519150601f19603f3d011682016040523d82523d6000602084013e6120c6565b606091505b509099505087158015906120da5750600081115b1561212d576120e9888261237a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461217a576040519150601f19603f3d011682016040523d82523d6000602084013e61217f565b606091505b5050505050505050505050505050565b600061219b82846126be565b9392505050565b600061219b82846126dd565b600061219b828461279f565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121ef576121ef6127b6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229191906127cc565b816001815181106122a4576122a46127b6565b60200260200101906001600160a01b031690816001600160a01b0316815250506122ef307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112f2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123449085906000908690309042906004016127e9565b600060405180830381600087803b15801561235e57600080fd5b505af1158015612372573d6000803e3d6000fd5b505050505050565b6123a5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112f2565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612434573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612459919061285a565b5050505050565b600060208083528351808285015260005b8181101561248d57858101830151858201604001528201612471565b8181111561249f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146112ef57600080fd5b600080604083850312156124dd57600080fd5b82356124e8816124b5565b946020939093013593505050565b60006020828403121561250857600080fd5b813561219b816124b5565b60006020828403121561252557600080fd5b5035919050565b60008060006060848603121561254157600080fd5b833561254c816124b5565b9250602084013561255c816124b5565b929592945050506040919091013590565b6000806000806080858703121561258357600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461114c57600080fd5b600080604083850312156125c257600080fd5b82356125cd816124b5565b91506125db6020840161259f565b90509250929050565b6000602082840312156125f657600080fd5b61219b8261259f565b6000806040838503121561261257600080fd5b823561261d816124b5565b9150602083013561262d816124b5565b809150509250929050565b600181811c9082168061264c57607f821691505b6020821081141561266d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156126d8576126d86126a8565b500290565b6000826126fa57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612712576127126126a8565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156127b1576127b16126a8565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156127de57600080fd5b815161219b816124b5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128395784516001600160a01b031683529383019391830191600101612814565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561286f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209db81e107ea848f1709630bca21798686dd88e9a74014f1a44207e1dbf92747764736f6c634300080a0033

Deployed Bytecode Sourcemap

32633:16546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9561:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11728:169;;;;;;;;;;-1:-1:-1;11728:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11728:169:0;1072:187:1;34124:63:0;;;;;;;;;;-1:-1:-1;34124:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32711:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32711:51:0;1516:230:1;10681:108:0;;;;;;;;;;-1:-1:-1;10769:12:0;;10681:108;;;1897:25:1;;;1885:2;1870:18;10681:108:0;1751:177:1;33908:33:0;;;;;;;;;;;;;;;;33868;;;;;;;;;;;;;;;;38524:275;;;;;;;;;;-1:-1:-1;38524:275:0;;;;;:::i;:::-;;:::i;:::-;;12379:492;;;;;;;;;;-1:-1:-1;12379:492:0;;;;;:::i;:::-;;:::i;33829:32::-;;;;;;;;;;;;;;;;32814:53;;;;;;;;;;;;32860:6;32814:53;;39443:503;;;;;;;;;;-1:-1:-1;39443:503:0;;;;;:::i;:::-;;:::i;10523:93::-;;;;;;;;;;-1:-1:-1;10523:93:0;;10606:2;3319:36:1;;3307:2;3292:18;10523:93:0;3177:184:1;13280:215:0;;;;;;;;;;-1:-1:-1;13280:215:0;;;;;:::i;:::-;;:::i;32903:29::-;;;;;;;;;;-1:-1:-1;32903:29:0;;;;-1:-1:-1;;;;;32903:29:0;;;32769:38;;;;;;;;;;;;;;;33124:33;;;;;;;;;;-1:-1:-1;33124:33:0;;;;;;;;41173:126;;;;;;;;;;-1:-1:-1;41173:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41263:28:0;41239:4;41263:28;;;:19;:28;;;;;;;;;41173:126;33204:30;;;;;;;;;;-1:-1:-1;33204:30:0;;;;;;;;;;;10852:127;;;;;;;;;;-1:-1:-1;10852:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10953:18:0;10926:7;10953:18;;;;;;;;;;;;10852:127;2796:103;;;;;;;;;;;;;:::i;37632:121::-;;;;;;;;;;;;;:::i;39072:167::-;;;;;;;;;;-1:-1:-1;39072:167:0;;;;;:::i;:::-;;:::i;32939:30::-;;;;;;;;;;-1:-1:-1;32939:30:0;;;;-1:-1:-1;;;;;32939:30:0;;;37468:112;;;;;;;;;;;;;:::i;2145:87::-;;;;;;;;;;-1:-1:-1;2218:6:0;;-1:-1:-1;;;;;2218:6:0;2145:87;;32976:24;;;;;;;;;;-1:-1:-1;32976:24:0;;;;-1:-1:-1;;;;;32976:24:0;;;39335:100;;;;;;;;;;-1:-1:-1;39335:100:0;;;;;:::i;:::-;;:::i;9780:104::-;;;;;;;;;;;;;:::i;40665:304::-;;;;;;;;;;-1:-1:-1;40665:304:0;;;;;:::i;:::-;;:::i;33948:27::-;;;;;;;;;;;;;;;;13998:413;;;;;;;;;;-1:-1:-1;13998:413:0;;;;;:::i;:::-;;:::i;11192:175::-;;;;;;;;;;-1:-1:-1;11192:175:0;;;;;:::i;:::-;;:::i;34345:57::-;;;;;;;;;;-1:-1:-1;34345:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33164:33;;;;;;;;;;-1:-1:-1;33164:33:0;;;;;;;;;;;40475:182;;;;;;;;;;-1:-1:-1;40475:182:0;;;;;:::i;:::-;;:::i;38807:256::-;;;;;;;;;;-1:-1:-1;38807:256:0;;;;;:::i;:::-;;:::i;33421:39::-;;;;;;;;;;-1:-1:-1;33421:39:0;;;;;;;;33009:35;;;;;;;;;;;;;;;;38019:497;;;;;;;;;;-1:-1:-1;38019:497:0;;;;;:::i;:::-;;:::i;11430:151::-;;;;;;;;;;-1:-1:-1;11430:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11546:18:0;;;11519:7;11546:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11430:151;33051:33;;;;;;;;;;;;;;;;39954:513;;;;;;;;;;-1:-1:-1;39954:513:0;;;;;:::i;:::-;;:::i;37814:135::-;;;;;;;;;;;;;:::i;3054:201::-;;;;;;;;;;-1:-1:-1;3054:201:0;;;;;:::i;:::-;;:::i;33091:24::-;;;;;;;;;;;;;;;;9561:100;9615:13;9648:5;9641:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9561:100;:::o;11728:169::-;11811:4;11828:39;898:10;11851:7;11860:6;11828:8;:39::i;:::-;-1:-1:-1;11885:4:0;11728:169;;;;:::o;38524:275::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;;;;;;;;;38661:4:::1;38653;38632:13;10769:12:::0;;;10681:108;38632:13:::1;:17;::::0;38648:1:::1;38632:17;:::i;:::-;38631:26;;;;:::i;:::-;38630:35;;;;:::i;:::-;38620:6;:45;;38598:142;;;::::0;-1:-1:-1;;;38598:142:0;;5904:2:1;38598:142:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:45;6088:19;;38598:142:0::1;5702:411:1::0;38598:142:0::1;38774:17;:6:::0;38784::::1;38774:17;:::i;:::-;38751:20;:40:::0;-1:-1:-1;38524:275:0:o;12379:492::-;12519:4;12536:36;12546:6;12554:9;12565:6;12536:9;:36::i;:::-;-1:-1:-1;;;;;12612:19:0;;12585:24;12612:19;;;:11;:19;;;;;;;;898:10;12612:33;;;;;;;;12664:26;;;;12656:79;;;;-1:-1:-1;;;12656:79:0;;6320:2:1;12656:79:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:38;6497:19;;12656:79:0;6118:404:1;12656:79:0;12771:57;12780:6;898:10;12821:6;12802:16;:25;12771:8;:57::i;:::-;-1:-1:-1;12859:4:0;;12379:492;-1:-1:-1;;;;12379:492:0:o;39443:503::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;39680:2:::1;39668:7:::0;39652:13;39621:28:::1;39636:13:::0;39621:12;:28:::1;:::i;:::-;:44;;;;:::i;:::-;:54;;;;:::i;:::-;39620:62;;39612:89;;;::::0;-1:-1:-1;;;39612:89:0;;6862:2:1;39612:89:0::1;::::0;::::1;6844:21:1::0;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:44;6974:18;;39612:89:0::1;6660:338:1::0;39612:89:0::1;39706:14;:29:::0;;;39746:15:::1;:31:::0;;;39788:15:::1;:31:::0;;;39830:9:::1;:19:::0;;;39842:7;39806:13;39875:32:::1;39764:13:::0;39723:12;39875:32:::1;:::i;:::-;:50;;;;:::i;:::-;:62;;;;:::i;:::-;39860:12;:77:::0;-1:-1:-1;;;;39443:503:0:o;13280:215::-;898:10;13368:4;13417:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13417:34:0;;;;;;;;;;13368:4;;13385:80;;13408:7;;13417:47;;13454:10;;13417:47;:::i;:::-;13385:8;:80::i;2796:103::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;2861:30:::1;2888:1;2861:18;:30::i;:::-;2796:103::o:0;37632:121::-;2218:6;;37684:4;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;-1:-1:-1;37701:14:0::1;:22:::0;;-1:-1:-1;;37701:22:0::1;::::0;;;37632:121;:::o;39072:167::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39185:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39185:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39072:167::o;37468:112::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;37523:13:::1;:20:::0;;-1:-1:-1;;37554:18:0;;;;;37468:112::o;39335:100::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;39406:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39406:21:0;;::::1;::::0;;;::::1;::::0;;39335:100::o;9780:104::-;9836:13;9869:7;9862:14;;;;;:::i;40665:304::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;40809:13:::1;-1:-1:-1::0;;;;;40801:21:0::1;:4;-1:-1:-1::0;;;;;40801:21:0::1;;;40779:128;;;::::0;-1:-1:-1;;;40779:128:0;;7205:2:1;40779:128:0::1;::::0;::::1;7187:21:1::0;7244:2;7224:18;;;7217:30;7283:34;7263:18;;;7256:62;7354:27;7334:18;;;7327:55;7399:19;;40779:128:0::1;7003:421:1::0;40779:128:0::1;40920:41;40949:4;40955:5;40920:28;:41::i;:::-;40665:304:::0;;:::o;13998:413::-;898:10;14091:4;14135:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14135:34:0;;;;;;;;;;14188:35;;;;14180:85;;;;-1:-1:-1;;;14180:85:0;;7631:2:1;14180:85:0;;;7613:21:1;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:35;7805:19;;14180:85:0;7429:401:1;14180:85:0;14301:67;898:10;14324:7;14352:15;14333:16;:34;14301:8;:67::i;:::-;-1:-1:-1;14399:4:0;;13998:413;-1:-1:-1;;;13998:413:0:o;11192:175::-;11278:4;11295:42;898:10;11319:9;11330:6;11295:9;:42::i;40475:182::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40560:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40560:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40615:34;;1212:41:1;;;40615:34:0::1;::::0;1185:18:1;40615:34:0::1;;;;;;;40475:182:::0;;:::o;38807:256::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;38947:4:::1;38939;38918:13;10769:12:::0;;;10681:108;38918:13:::1;:17;::::0;38934:1:::1;38918:17;:::i;:::-;38917:26;;;;:::i;:::-;38916:35;;;;:::i;:::-;38906:6;:45;;38884:131;;;::::0;-1:-1:-1;;;38884:131:0;;8037:2:1;38884:131:0::1;::::0;::::1;8019:21:1::0;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:1;;;8159:34;8210:19;;38884:131:0::1;7835:400:1::0;38884:131:0::1;39038:17;:6:::0;39048::::1;39038:17;:::i;:::-;39026:9;:29:::0;-1:-1:-1;38807:256:0:o;38019:497::-;2218:6;;38127:4;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;38206:6:::1;38185:13;10769:12:::0;;;10681:108;38185:13:::1;:17;::::0;38201:1:::1;38185:17;:::i;:::-;38184:28;;;;:::i;:::-;38171:9;:41;;38149:144;;;::::0;-1:-1:-1;;;38149:144:0;;8442:2:1;38149:144:0::1;::::0;::::1;8424:21:1::0;8481:2;8461:18;;;8454:30;8520:34;8500:18;;;8493:62;-1:-1:-1;;;8571:18:1;;;8564:51;8632:19;;38149:144:0::1;8240:417:1::0;38149:144:0::1;38361:4;38340:13;10769:12:::0;;;10681:108;38340:13:::1;:17;::::0;38356:1:::1;38340:17;:::i;:::-;38339:26;;;;:::i;:::-;38326:9;:39;;38304:141;;;::::0;-1:-1:-1;;;38304:141:0;;8864:2:1;38304:141:0::1;::::0;::::1;8846:21:1::0;8903:2;8883:18;;;8876:30;8942:34;8922:18;;;8915:62;-1:-1:-1;;;8993:18:1;;;8986:50;9053:19;;38304:141:0::1;8662:416:1::0;38304:141:0::1;-1:-1:-1::0;38456:18:0::1;:30:::0;;;38504:4:::1;2436:1;38019:497:::0;;;:::o;39954:513::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;40192:2:::1;40180:7:::0;40164:13;40133:28:::1;40148:13:::0;40133:12;:28:::1;:::i;:::-;:44;;;;:::i;:::-;:54;;;;:::i;:::-;40132:62;;40124:90;;;::::0;-1:-1:-1;;;40124:90:0;;9285:2:1;40124:90:0::1;::::0;::::1;9267:21:1::0;9324:2;9304:18;;;9297:30;-1:-1:-1;;;9343:18:1;;;9336:45;9398:18;;40124:90:0::1;9083:339:1::0;40124:90:0::1;40219:15;:30:::0;;;40260:16:::1;:32:::0;;;40303:16:::1;:32:::0;;;40346:10:::1;:20:::0;;;40359:7;40322:13;40393:34:::1;40279:13:::0;40237:12;40393:34:::1;:::i;:::-;:53;;;;:::i;:::-;:66;;;;:::i;:::-;40377:13;:82:::0;-1:-1:-1;;;;39954:513:0:o;37814:135::-;2218:6;;37874:4;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;-1:-1:-1;37891:20:0::1;:28:::0;;-1:-1:-1;;37891:28:0::1;::::0;;;37814:135;:::o;3054:201::-;2218:6;;-1:-1:-1;;;;;2218:6:0;898:10;2365:23;2357:68;;;;-1:-1:-1;;;2357:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3143:22:0;::::1;3135:73;;;::::0;-1:-1:-1;;;3135:73:0;;9629:2:1;3135:73:0::1;::::0;::::1;9611:21:1::0;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:1;;;9751:36;9804:19;;3135:73:0::1;9427:402:1::0;3135:73:0::1;3219:28;3238:8;3219:18;:28::i;:::-;3054:201:::0;:::o;17682:380::-;-1:-1:-1;;;;;17818:19:0;;17810:68;;;;-1:-1:-1;;;17810:68:0;;10036:2:1;17810:68:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114:34;10094:18;;;10087:62;-1:-1:-1;;;10165:18:1;;;10158:34;10209:19;;17810:68:0;9834:400:1;17810:68:0;-1:-1:-1;;;;;17897:21:0;;17889:68;;;;-1:-1:-1;;;17889:68:0;;10441:2:1;17889:68:0;;;10423:21:1;10480:2;10460:18;;;10453:30;10519:34;10499:18;;;10492:62;-1:-1:-1;;;10570:18:1;;;10563:32;10612:19;;17889:68:0;10239:398:1;17889:68:0;-1:-1:-1;;;;;17970:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18022:32;;1897:25:1;;;18022:32:0;;1870:18:1;18022:32:0;;;;;;;17682:380;;;:::o;41307:4851::-;-1:-1:-1;;;;;41439:18:0;;41431:68;;;;-1:-1:-1;;;41431:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41518:16:0;;41510:64;;;;-1:-1:-1;;;41510:64:0;;;;;;;:::i;:::-;41591:11;41587:93;;41619:28;41635:4;41641:2;41645:1;41619:15;:28::i;:::-;41307:4851;;;:::o;41587:93::-;41696:14;;;;41692:2487;;;2218:6;;-1:-1:-1;;;;;41749:15:0;;;2218:6;;41749:15;;;;:49;;-1:-1:-1;2218:6:0;;-1:-1:-1;;;;;41785:13:0;;;2218:6;;41785:13;;41749:49;:86;;;;-1:-1:-1;;;;;;41819:16:0;;;;41749:86;:128;;;;-1:-1:-1;;;;;;41856:21:0;;41870:6;41856:21;;41749:128;:158;;;;-1:-1:-1;41899:8:0;;-1:-1:-1;;;41899:8:0;;;;41898:9;41749:158;41727:2441;;;41947:13;;;;;;;41942:223;;-1:-1:-1;;;;;42019:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42048:23:0;;;;;;:19;:23;;;;;;;;42019:52;41985:160;;;;-1:-1:-1;;;41985:160:0;;11654:2:1;41985:160:0;;;11636:21:1;11693:2;11673:18;;;11666:30;-1:-1:-1;;;11712:18:1;;;11705:52;11774:18;;41985:160:0;11452:346:1;41985:160:0;42321:20;;;;42317:641;;;2218:6;;-1:-1:-1;;;;;42396:13:0;;;2218:6;;42396:13;;;;:72;;;42452:15;-1:-1:-1;;;;;42438:30:0;:2;-1:-1:-1;;;;;42438:30:0;;;42396:72;:129;;;;;42511:13;-1:-1:-1;;;;;42497:28:0;:2;-1:-1:-1;;;;;42497:28:0;;;42396:129;42366:573;;;42643:9;42614:39;;;;:28;:39;;;;;;42689:12;-1:-1:-1;42576:258:0;;;;-1:-1:-1;;;42576:258:0;;12005:2:1;42576:258:0;;;11987:21:1;12044:2;12024:18;;;12017:30;12083:34;12063:18;;;12056:62;12154:34;12134:18;;;12127:62;-1:-1:-1;;;12205:19:1;;;12198:40;12255:19;;42576:258:0;11803:477:1;42576:258:0;42890:9;42861:39;;;;:28;:39;;;;;42903:12;42861:54;;42366:573;-1:-1:-1;;;;;43032:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43089:35:0;;;;;;:31;:35;;;;;;;;43088:36;43032:92;43006:1147;;;43211:20;;43201:6;:30;;43167:169;;;;-1:-1:-1;;;43167:169:0;;12487:2:1;43167:169:0;;;12469:21:1;12526:2;12506:18;;;12499:30;12565:34;12545:18;;;12538:62;-1:-1:-1;;;12616:18:1;;;12609:51;12677:19;;43167:169:0;12285:417:1;43167:169:0;43419:9;;-1:-1:-1;;;;;10953:18:0;;10926:7;10953:18;;;;;;;;;;;43393:22;;:6;:22;:::i;:::-;:35;;43359:140;;;;-1:-1:-1;;;43359:140:0;;12909:2:1;43359:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;43359:140:0;12707:343:1;43359:140:0;43006:1147;;;-1:-1:-1;;;;;43597:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43652:37:0;;;;;;:31;:37;;;;;;;;43651:38;43597:92;43571:582;;;43776:20;;43766:6;:30;;43732:170;;;;-1:-1:-1;;;43732:170:0;;13257:2:1;43732:170:0;;;13239:21:1;13296:2;13276:18;;;13269:30;13335:34;13315:18;;;13308:62;-1:-1:-1;;;13386:18:1;;;13379:52;13448:19;;43732:170:0;13055:418:1;43571:582:0;-1:-1:-1;;;;;43933:35:0;;;;;;:31;:35;;;;;;;;43928:225;;44053:9;;-1:-1:-1;;;;;10953:18:0;;10926:7;10953:18;;;;;;;;;;;44027:22;;:6;:22;:::i;:::-;:35;;43993:140;;;;-1:-1:-1;;;43993:140:0;;12909:2:1;43993:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;43993:140:0;12707:343:1;43993:140:0;44240:4;44191:28;10953:18;;;;;;;;;;;44298;;44274:42;;;;;;;44347:35;;-1:-1:-1;44371:11:0;;;;;;;44347:35;:61;;;;-1:-1:-1;44400:8:0;;-1:-1:-1;;;44400:8:0;;;;44399:9;44347:61;:110;;;;-1:-1:-1;;;;;;44426:31:0;;;;;;:25;:31;;;;;;;;44425:32;44347:110;:153;;;;-1:-1:-1;;;;;;44475:25:0;;;;;;:19;:25;;;;;;;;44474:26;44347:153;:194;;;;-1:-1:-1;;;;;;44518:23:0;;;;;;:19;:23;;;;;;;;44517:24;44347:194;44329:326;;;44568:8;:15;;-1:-1:-1;;;;44568:15:0;-1:-1:-1;;;44568:15:0;;;44600:10;:8;:10::i;:::-;44627:8;:16;;-1:-1:-1;;;;44627:16:0;;;44329:326;44683:8;;-1:-1:-1;;;;;44793:25:0;;44667:12;44793:25;;;:19;:25;;;;;;44683:8;-1:-1:-1;;;44683:8:0;;;;;44682:9;;44793:25;;:52;;-1:-1:-1;;;;;;44822:23:0;;;;;;:19;:23;;;;;;;;44793:52;44789:100;;;-1:-1:-1;44872:5:0;44789:100;44901:12;45006:7;45002:1103;;;-1:-1:-1;;;;;45058:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45107:1;45091:13;;:17;45058:50;45054:902;;;45136:34;45166:3;45136:25;45147:13;;45136:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45129:41;;45225:13;;45206:15;;45199:4;:22;;;;:::i;:::-;45198:40;;;;:::i;:::-;45177:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45307:13:0;;45287:16;;45280:23;;:4;:23;:::i;:::-;45279:41;;;;:::i;:::-;45257:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45377:13:0;;45363:10;;45356:17;;:4;:17;:::i;:::-;45355:35;;;;:::i;:::-;45339:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45459:13:0;;45439:16;;45432:23;;:4;:23;:::i;:::-;45431:41;;;;:::i;:::-;45409:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45054:902:0;;-1:-1:-1;45054:902:0;;-1:-1:-1;;;;;45534:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45584:1;45569:12;;:16;45534:51;45530:426;;;45613:33;45642:3;45613:24;45624:12;;45613:6;:10;;:24;;;;:::i;:33::-;45606:40;;45700:12;;45682:14;;45675:4;:21;;;;:::i;:::-;45674:38;;;;:::i;:::-;45653:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45780:12:0;;45761:15;;45754:22;;:4;:22;:::i;:::-;45753:39;;;;:::i;:::-;45731:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45848:12:0;;45835:9;;45828:16;;:4;:16;:::i;:::-;45827:33;;;;:::i;:::-;45811:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45928:12:0;;45909:15;;45902:22;;:4;:22;:::i;:::-;45901:39;;;;:::i;:::-;45879:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45530:426:0;45976:8;;45972:91;;46005:42;46021:4;46035;46042;46005:15;:42::i;:::-;46079:14;46089:4;46079:14;;:::i;:::-;;;45002:1103;46117:33;46133:4;46139:2;46143:6;46117:15;:33::i;:::-;41420:4738;;;;41307:4851;;;:::o;3415:191::-;3508:6;;;-1:-1:-1;;;;;3525:17:0;;;-1:-1:-1;;;;;;3525:17:0;;;;;;;3558:40;;3508:6;;;3525:17;3508:6;;3558:40;;3489:16;;3558:40;3478:128;3415:191;:::o;40977:188::-;-1:-1:-1;;;;;41060:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41060:39:0;;;;;;;;;;41117:40;;41060:39;;:31;41117:40;;;40977:188;;:::o;14901:733::-;-1:-1:-1;;;;;15041:20:0;;15033:70;;;;-1:-1:-1;;;15033:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15122:23:0;;15114:71;;;;-1:-1:-1;;;15114:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15282:17:0;;15258:21;15282:17;;;;;;;;;;;15318:23;;;;15310:74;;;;-1:-1:-1;;;15310:74:0;;13810:2:1;15310:74:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:36;13985:19;;15310:74:0;13608:402:1;15310:74:0;-1:-1:-1;;;;;15420:17:0;;;:9;:17;;;;;;;;;;;15440:22;;;15420:42;;15484:20;;;;;;;;:30;;15456:6;;15420:9;15484:30;;15456:6;;15484:30;:::i;:::-;;;;;;;;15549:9;-1:-1:-1;;;;;15532:35:0;15541:6;-1:-1:-1;;;;;15532:35:0;;15560:6;15532:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15532:35:0;;;;;;;;15022:612;14901:733;;;:::o;47286:1888::-;47369:4;47325:23;10953:18;;;;;;;;;;;47325:50;;47386:25;47476:12;;47455:18;;47434;;47414:17;;:38;;;;:::i;:::-;:59;;;;:::i;:::-;:74;;;;:::i;:::-;47386:102;-1:-1:-1;47499:12:0;47528:20;;;:46;;-1:-1:-1;47552:22:0;;47528:46;47524:85;;;47591:7;;;47286:1888::o;47524:85::-;47643:18;;:23;;47664:2;47643:23;:::i;:::-;47625:15;:41;47621:115;;;47701:18;;:23;;47722:2;47701:23;:::i;:::-;47683:41;;47621:115;47797:23;47884:1;47864:17;47842:18;;47824:15;:36;;;;:::i;:::-;47823:58;;;;:::i;:::-;:62;;;;:::i;:::-;47797:88;-1:-1:-1;47896:26:0;47925:36;:15;47797:88;47925:19;:36::i;:::-;47896:65;-1:-1:-1;48002:21:0;48036:36;47896:65;48036:16;:36::i;:::-;48085:18;48106:44;:21;48132:17;48106:25;:44::i;:::-;48085:65;;48157:22;48182:56;48220:17;48182:33;48197:17;;48182:10;:14;;:33;;;;:::i;:56::-;48157:81;;48249:23;48275:57;48314:17;48275:34;48290:18;;48275:10;:14;;:34;;;;:::i;:57::-;48249:83;;48343:17;48363:51;48396:17;48363:28;48378:12;;48363:10;:14;;:28;;;;:::i;:51::-;48343:71;-1:-1:-1;48427:23:0;48343:71;48483:15;48453:27;48466:14;48453:10;:27;:::i;:::-;:45;;;;:::i;:::-;:57;;;;:::i;:::-;48544:1;48523:18;:22;;;48550:17;:21;;;48582:18;:22;;;48615:12;:16;;;48666:9;;48658:45;;48427:83;;-1:-1:-1;;;;;;48666:9:0;;48689;;48658:45;48544:1;48658:45;48689:9;48666;48658:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48736:15:0;;48728:57;;48644:59;;-1:-1:-1;;;;;;48736:15:0;;48765;;48728:57;;;;48765:15;48736;48728:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48714:71:0;;-1:-1:-1;;48804:19:0;;;;;:42;;;48845:1;48827:15;:19;48804:42;48800:278;;;48863:46;48876:15;48893;48863:12;:46::i;:::-;49033:18;;48929:137;;;14427:25:1;;;14483:2;14468:18;;14461:34;;;14511:18;;;14504:34;;;;48929:137:0;;;;;;14415:2:1;48929:137:0;;;48800:278;49112:14;;49104:62;;-1:-1:-1;;;;;49112:14:0;;;;49140:21;;49104:62;;;;49140:21;49112:14;49104:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47286:1888:0:o;23135:98::-;23193:7;23220:5;23224:1;23220;:5;:::i;:::-;23213:12;23135:98;-1:-1:-1;;;23135:98:0:o;23534:::-;23592:7;23619:5;23623:1;23619;:5;:::i;22778:98::-;22836:7;22863:5;22867:1;22863;:5;:::i;46166:589::-;46316:16;;;46330:1;46316:16;;;;;;;;46292:21;;46316:16;;;;;;;;;;-1:-1:-1;46316:16:0;46292:40;;46361:4;46343;46348:1;46343:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46343:23:0;;;-1:-1:-1;;;;;46343:23:0;;;;;46387:15;-1:-1:-1;;;;;46387:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46377:4;46382:1;46377:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46377:32:0;;;-1:-1:-1;;;;;46377:32:0;;;;;46422:62;46439:4;46454:15;46472:11;46422:8;:62::i;:::-;46523:224;;-1:-1:-1;;;46523:224:0;;-1:-1:-1;;;;;46523:15:0;:66;;;;:224;;46604:11;;46630:1;;46674:4;;46701;;46721:15;;46523:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46221:534;46166:589;:::o;46763:515::-;46911:62;46928:4;46943:15;46961:11;46911:8;:62::i;:::-;47220:9;;47016:254;;-1:-1:-1;;;47016:254:0;;47088:4;47016:254;;;16395:34:1;16445:18;;;16438:34;;;47134:1:0;16488:18:1;;;16481:34;;;16531:18;;;16524:34;-1:-1:-1;;;;;47220:9:0;;;16574:19:1;;;16567:44;47244:15:0;16627:19:1;;;16620:35;47016:15:0;:31;;;;;;47055:9;;16329:19:1;;47016:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46763:515;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2787:385::-;2873:6;2881;2889;2897;2950:3;2938:9;2929:7;2925:23;2921:33;2918:53;;;2967:1;2964;2957:12;2918:53;-1:-1:-1;;2990:23:1;;;3060:2;3045:18;;3032:32;;-1:-1:-1;3111:2:1;3096:18;;3083:32;;3162:2;3147:18;3134:32;;-1:-1:-1;2787:385:1;-1:-1:-1;2787:385:1:o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:168;5347:7;5413:1;5409;5405:6;5401:14;5398:1;5395:21;5390:1;5383:9;5376:17;5372:45;5369:71;;;5420:18;;:::i;:::-;-1:-1:-1;5460:9:1;;5307:168::o;5480:217::-;5520:1;5546;5536:132;;5590:10;5585:3;5581:20;5578:1;5571:31;5625:4;5622:1;5615:15;5653:4;5650:1;5643:15;5536:132;-1:-1:-1;5682:9:1;;5480:217::o;6527:128::-;6567:3;6598:1;6594:6;6591:1;6588:13;6585:39;;;6604:18;;:::i;:::-;-1:-1:-1;6640:9:1;;6527:128::o;10642:401::-;10844:2;10826:21;;;10883:2;10863:18;;;10856:30;10922:34;10917:2;10902:18;;10895:62;-1:-1:-1;;;10988:2:1;10973:18;;10966:35;11033:3;11018:19;;10642:401::o;11048:399::-;11250:2;11232:21;;;11289:2;11269:18;;;11262:30;11328:34;11323:2;11308:18;;11301:62;-1:-1:-1;;;11394:2:1;11379:18;;11372:33;11437:3;11422:19;;11048:399::o;13478:125::-;13518:4;13546:1;13543;13540:8;13537:34;;;13551:18;;:::i;:::-;-1:-1:-1;13588:9:1;;13478:125::o;14681:127::-;14742:10;14737:3;14733:20;14730:1;14723:31;14773:4;14770:1;14763:15;14797:4;14794:1;14787:15;14813:251;14883:6;14936:2;14924:9;14915:7;14911:23;14907:32;14904:52;;;14952:1;14949;14942:12;14904:52;14984:9;14978:16;15003:31;15028:5;15003:31;:::i;15069:980::-;15331:4;15379:3;15368:9;15364:19;15410:6;15399:9;15392:25;15436:2;15474:6;15469:2;15458:9;15454:18;15447:34;15517:3;15512:2;15501:9;15497:18;15490:31;15541:6;15576;15570:13;15607:6;15599;15592:22;15645:3;15634:9;15630:19;15623:26;;15684:2;15676:6;15672:15;15658:29;;15705:1;15715:195;15729:6;15726:1;15723:13;15715:195;;;15794:13;;-1:-1:-1;;;;;15790:39:1;15778:52;;15885:15;;;;15850:12;;;;15826:1;15744:9;15715:195;;;-1:-1:-1;;;;;;;15966:32:1;;;;15961:2;15946:18;;15939:60;-1:-1:-1;;;16030:3:1;16015:19;16008:35;15927:3;15069:980;-1:-1:-1;;;15069:980:1:o;16666:306::-;16754:6;16762;16770;16823:2;16811:9;16802:7;16798:23;16794:32;16791:52;;;16839:1;16836;16829:12;16791:52;16868:9;16862:16;16852:26;;16918:2;16907:9;16903:18;16897:25;16887:35;;16962:2;16951:9;16947:18;16941:25;16931:35;;16666:306;;;;;:::o

Swarm Source

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