ETH Price: $3,321.41 (+2.51%)
Gas: 3 Gwei

Token

Verified Doge ($VDOGE)
 

Overview

Max Total Supply

10,000,000 $VDOGE

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
36,687.214970465151467405 $VDOGE

Value
$0.00
0x68fcf2f38c7bbedba64611ca7b05ffaa42ed58ae
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:
VerifiedDoge

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

/* pragma solidity ^0.8.19; */

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

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

////// 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 VerifiedDoge 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 charityWallet;
    address public marketingWallet;
    address public devWallet;

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

    bool public limitsInEffect = true;
    bool public tradingActive = true;
    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 public buyTotalFees;
	uint256 public buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

	uint256 public tokensForCharity;
    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("Verified Doge", "$VDOGE") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 1;

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

        uint256 totalSupply = 10000000 * 1e18;

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

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

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

		charityWallet = address(0x893Da924344E0bB291f5A1fB9081F7711790Fd28); // 1% of every transaction is directly sent to Charity
        marketingWallet = address(0x893Da924344E0bB291f5A1fB9081F7711790Fd28); //  1% of every transaction is dedicated for Verified Doge
        devWallet = address(0x893Da924344E0bB291f5A1fB9081F7711790Fd28); // 2% of every transaction supports Verified Doge

        // 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 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + 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);
				tokensForCharity += (fees * sellCharityFee) / 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);
				tokensForCharity += (fees * buyCharityFee) / 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 = tokensForCharity + 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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
		tokensForCharity = 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(charityWallet).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":[{"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":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_charityFee","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":"_charityFee","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"}]

60c0604052600c805462ffffff191662010101179055600e805460ff191660011790553480156200002f57600080fd5b506040518060400160405280600d81526020016c566572696669656420446f676560981b815250604051806040016040528060068152602001652456444f474560d01b815250816003908162000086919062000749565b50600462000095828262000749565b505050620000b2620000ac620003ed60201b60201c565b620003f1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d481600162000443565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000145919062000815565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000193573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b9919062000815565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000207573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022d919062000815565b6001600160a01b031660a08190526200024890600162000443565b60a05162000258906001620004bd565b692a5a058fc295ed0000006009819055600b5560006002600180838382806a084595161401484a0000006127106200029282600a6200085d565b6200029e91906200087d565b600a5560108990556011889055601287905560138690558587620002c38a8c620008a0565b620002cf9190620008a0565b620002db9190620008a0565b600f5560158590556016849055601783905560188290558183620003008688620008a0565b6200030c9190620008a0565b620003189190620008a0565b6014556006805473893da924344e0bb291f5a1fb9081f7711790fd286001600160a01b03199182168117909255600780548216831790556008805490911690911790556200037a620003726005546001600160a01b031690565b600162000511565b6200038730600162000511565b6200039661dead600162000511565b620003b5620003ad6005546001600160a01b031690565b600162000443565b620003c230600162000443565b620003d161dead600162000443565b620003dd3382620005bb565b50505050505050505050620008b6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004925760405162461bcd60e51b815260206004820181905260248201526000805160206200338a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200055c5760405162461bcd60e51b815260206004820181905260248201526000805160206200338a833981519152604482015260640162000489565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006135760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000489565b8060026000828254620006279190620008a0565b90915550506001600160a01b0382166000908152602081905260408120805483929062000656908490620008a0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006d057607f821691505b602082108103620006f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006a057600081815260208120601f850160051c81016020861015620007205750805b601f850160051c820191505b8181101562000741578281556001016200072c565b505050505050565b81516001600160401b03811115620007655762000765620006a5565b6200077d81620007768454620006bb565b84620006f7565b602080601f831160018114620007b557600084156200079c5750858301515b600019600386901b1c1916600185901b17855562000741565b600085815260208120601f198616915b82811015620007e657888601518255948401946001909101908401620007c5565b5085821015620008055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200082857600080fd5b81516001600160a01b03811681146200084057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000877576200087762000847565b92915050565b6000826200089b57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000877576200087762000847565b60805160a051612a76620009146000396000818161059301528181610f1501526117bd01526000818161043c0152818161177f015281816123e20152818161249b015281816124d70152818161255101526125b90152612a766000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063e2f45605146109a5578063e7ad9fcd146109bb578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe414610913578063d257b34f14610929578063d85ba06314610949578063dd62ed3e1461095f57600080fd5b8063c0246668146108b9578063c18bc195146108d9578063c876d0b9146108f957600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d71461082a578063a9059cbb1461084a578063b62496f51461086a578063bbc0c7421461089a57600080fd5b80639fccce32146107e8578063a0d82dc5146107fe578063a1dc92bc1461081457600080fd5b8063924de9b7116101a0578063924de9b71461077d57806395d89b411461079d5780639a7a23d6146107b25780639c3b4fdc146107d257600080fd5b80638da5cb5b146107295780638ea5220f14610747578063921369131461076757600080fd5b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106be5780637b208769146106de5780637bce5a04146106fe5780638a8c523c1461071457600080fd5b8063715018a614610674578063751039fc146106895780637571336a1461069e57600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636ddd17131461061e57806370a082311461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f95780632e6ed7ef1461050f578063313ce5671461052f578063395093511461054b57600080fd5b80631f3fed8f146104a1578063203e727e146104b757806323b872dd146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a57806318160ddd146104765780631a8145bb1461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d9190612631565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612694565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126c0565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506002546103ec565b34801561049757600080fd5b506103ec601b5481565b3480156104ad57600080fd5b506103ec601a5481565b3480156104c357600080fd5b506104d76104d23660046126dd565b610afb565b005b3480156104e557600080fd5b506103c66104f43660046126f6565b610be1565b34801561050557600080fd5b5061045e61dead81565b34801561051b57600080fd5b506104d761052a366004612737565b610c8b565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c6610566366004612694565b610d53565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126c0565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b50600c546103c69062010000900460ff1681565b34801561064a57600080fd5b506103ec6106593660046126c0565b6001600160a01b031660009081526020819052604090205490565b34801561068057600080fd5b506104d7610d8f565b34801561069557600080fd5b506103c6610dc5565b3480156106aa57600080fd5b506104d76106b9366004612779565b610e02565b3480156106ca57600080fd5b5060075461045e906001600160a01b031681565b3480156106ea57600080fd5b5060065461045e906001600160a01b031681565b34801561070a57600080fd5b506103ec60115481565b34801561072057600080fd5b506104d7610e57565b34801561073557600080fd5b506005546001600160a01b031661045e565b34801561075357600080fd5b5060085461045e906001600160a01b031681565b34801561077357600080fd5b506103ec60165481565b34801561078957600080fd5b506104d76107983660046127ae565b610e94565b3480156107a957600080fd5b50610390610eda565b3480156107be57600080fd5b506104d76107cd366004612779565b610ee9565b3480156107de57600080fd5b506103ec60135481565b3480156107f457600080fd5b506103ec601c5481565b34801561080a57600080fd5b506103ec60185481565b34801561082057600080fd5b506103ec60105481565b34801561083657600080fd5b506103c6610845366004612694565b610fc8565b34801561085657600080fd5b506103c6610865366004612694565b611061565b34801561087657600080fd5b506103c66108853660046126c0565b601f6020526000908152604090205460ff1681565b3480156108a657600080fd5b50600c546103c690610100900460ff1681565b3480156108c557600080fd5b506104d76108d4366004612779565b61106e565b3480156108e557600080fd5b506104d76108f43660046126dd565b6110f7565b34801561090557600080fd5b50600e546103c69060ff1681565b34801561091f57600080fd5b506103ec60095481565b34801561093557600080fd5b506103c66109443660046126dd565b6111c8565b34801561095557600080fd5b506103ec600f5481565b34801561096b57600080fd5b506103ec61097a3660046127c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b157600080fd5b506103ec600a5481565b3480156109c757600080fd5b506104d76109d6366004612737565b61131f565b3480156109e757600080fd5b506103c66113e8565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b506104d7610a213660046126c0565b611425565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612802565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612802565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114c0565b5060015b92915050565b6005546001600160a01b03163314610b2e5760405162461bcd60e51b8152600401610b259061283c565b60405180910390fd5b670de0b6b3a76400006103e8610b4360025490565b610b4e906005612887565b610b58919061289e565b610b62919061289e565b811015610bc95760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b25565b610bdb81670de0b6b3a7640000612887565b60095550565b6000610bee8484846115e4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c735760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b25565b610c8085338584036114c0565b506001949350505050565b6005546001600160a01b03163314610cb55760405162461bcd60e51b8152600401610b259061283c565b600a8183610cc386886128c0565b610ccd91906128c0565b610cd791906128c0565b1115610d165760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b25565b60108490556011839055601282905560138190558082610d3685876128c0565b610d4091906128c0565b610d4a91906128c0565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d8a9086906128c0565b6114c0565b6005546001600160a01b03163314610db95760405162461bcd60e51b8152600401610b259061283c565b610dc36000611e9b565b565b6005546000906001600160a01b03163314610df25760405162461bcd60e51b8152600401610b259061283c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e2c5760405162461bcd60e51b8152600401610b259061283c565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e815760405162461bcd60e51b8152600401610b259061283c565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610ebe5760405162461bcd60e51b8152600401610b259061283c565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612802565b6005546001600160a01b03163314610f135760405162461bcd60e51b8152600401610b259061283c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610fba5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b25565b610fc48282611eed565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561104a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b25565b61105733858584036114c0565b5060019392505050565b6000610af13384846115e4565b6005546001600160a01b031633146110985760405162461bcd60e51b8152600401610b259061283c565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111215760405162461bcd60e51b8152600401610b259061283c565b670de0b6b3a76400006103e861113660025490565b611141906005612887565b61114b919061289e565b611155919061289e565b8110156111b05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b25565b6111c281670de0b6b3a7640000612887565b600b5550565b6005546000906001600160a01b031633146111f55760405162461bcd60e51b8152600401610b259061283c565b620186a061120260025490565b61120d906001612887565b611217919061289e565b8210156112845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b25565b6103e861129060025490565b61129b906005612887565b6112a5919061289e565b8211156113115760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b25565b50600a81905560015b919050565b6005546001600160a01b031633146113495760405162461bcd60e51b8152600401610b259061283c565b600a818361135786886128c0565b61136191906128c0565b61136b91906128c0565b11156113ab5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b25565b601584905560168390556017829055601881905580826113cb85876128c0565b6113d591906128c0565b6113df91906128c0565b60145550505050565b6005546000906001600160a01b031633146114155760405162461bcd60e51b8152600401610b259061283c565b50600e805460ff19169055600190565b6005546001600160a01b0316331461144f5760405162461bcd60e51b8152600401610b259061283c565b6001600160a01b0381166114b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b25565b6114bd81611e9b565b50565b6001600160a01b0383166115225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b25565b6001600160a01b0382166115835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b25565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661160a5760405162461bcd60e51b8152600401610b25906128d3565b6001600160a01b0382166116305760405162461bcd60e51b8152600401610b2590612918565b806000036116495761164483836000611f41565b505050565b600c5460ff1615611b06576005546001600160a01b0384811691161480159061168057506005546001600160a01b03838116911614155b801561169457506001600160a01b03821615155b80156116ab57506001600160a01b03821661dead14155b80156116c15750600554600160a01b900460ff16155b15611b0657600c54610100900460ff16611759576001600160a01b0383166000908152601d602052604090205460ff168061171457506001600160a01b0382166000908152601d602052604090205460ff165b6117595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b25565b600e5460ff16156118a0576005546001600160a01b038381169116148015906117b457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117f257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156118a057326000908152600d6020526040902054431161188d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b25565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118e157506001600160a01b0382166000908152601e602052604090205460ff16155b156119c5576009548111156119565760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b25565b600b546001600160a01b03831660009081526020819052604090205461197c90836128c0565b11156119c05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b25565b611b06565b6001600160a01b0382166000908152601f602052604090205460ff168015611a0657506001600160a01b0383166000908152601e602052604090205460ff16155b15611a7c576009548111156119c05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b25565b6001600160a01b0382166000908152601e602052604090205460ff16611b0657600b546001600160a01b038316600090815260208190526040902054611ac290836128c0565b1115611b065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b25565b30600090815260208190526040902054600a5481108015908190611b325750600c5462010000900460ff165b8015611b485750600554600160a01b900460ff16155b8015611b6d57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b9257506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bb757506001600160a01b0384166000908152601d602052604090205460ff16155b15611be5576005805460ff60a01b1916600160a01b179055611bd7612096565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c3357506001600160a01b0385166000908152601d602052604090205460ff165b15611c3c575060005b60008115611e87576001600160a01b0386166000908152601f602052604090205460ff168015611c6e57506000601454115b15611d5c57611c936064611c8d6014548861236090919063ffffffff16565b90612373565b905060145460155482611ca69190612887565b611cb0919061289e565b60196000828254611cc191906128c0565b9091555050601454601754611cd69083612887565b611ce0919061289e565b601b6000828254611cf191906128c0565b9091555050601454601854611d069083612887565b611d10919061289e565b601c6000828254611d2191906128c0565b9091555050601454601654611d369083612887565b611d40919061289e565b601a6000828254611d5191906128c0565b90915550611e699050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d8657506000600f54115b15611e6957611da56064611c8d600f548861236090919063ffffffff16565b9050600f5460105482611db89190612887565b611dc2919061289e565b60196000828254611dd391906128c0565b9091555050600f54601254611de89083612887565b611df2919061289e565b601b6000828254611e0391906128c0565b9091555050600f54601354611e189083612887565b611e22919061289e565b601c6000828254611e3391906128c0565b9091555050600f54601154611e489083612887565b611e52919061289e565b601a6000828254611e6391906128c0565b90915550505b8015611e7a57611e7a873083611f41565b611e84818661295b565b94505b611e92878787611f41565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f675760405162461bcd60e51b8152600401610b25906128d3565b6001600160a01b038216611f8d5760405162461bcd60e51b8152600401610b2590612918565b6001600160a01b038316600090815260208190526040902054818110156120055760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b25565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061203c9084906128c0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208891815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120c091906128c0565b6120ca91906128c0565b6120d491906128c0565b905060008215806120e3575081155b156120ed57505050565b600a546120fb906014612887565b83111561211357600a54612110906014612887565b92505b6000600283601b54866121269190612887565b612130919061289e565b61213a919061289e565b90506000612148858361237f565b9050476121548261238b565b6000612160478361237f565b9050600061217d87611c8d6019548561236090919063ffffffff16565b9050600061219a88611c8d601a548661236090919063ffffffff16565b905060006121b789611c8d601c548761236090919063ffffffff16565b9050600081836121c7868861295b565b6121d1919061295b565b6121db919061295b565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461223d576040519150601f19603f3d011682016040523d82523d6000602084013e612242565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612292576040519150601f19603f3d011682016040523d82523d6000602084013e612297565b606091505b509099505087158015906122ab5750600081115b156122fe576122ba888261254b565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461234b576040519150601f19603f3d011682016040523d82523d6000602084013e612350565b606091505b5050505050505050505050505050565b600061236c8284612887565b9392505050565b600061236c828461289e565b600061236c828461295b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123c0576123c061296e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561243e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124629190612984565b816001815181106124755761247561296e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124c0307f0000000000000000000000000000000000000000000000000000000000000000846114c0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125159085906000908690309042906004016129a1565b600060405180830381600087803b15801561252f57600080fd5b505af1158015612543573d6000803e3d6000fd5b505050505050565b612576307f0000000000000000000000000000000000000000000000000000000000000000846114c0565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612605573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061262a9190612a12565b5050505050565b600060208083528351808285015260005b8181101561265e57858101830151858201604001528201612642565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114bd57600080fd5b600080604083850312156126a757600080fd5b82356126b28161267f565b946020939093013593505050565b6000602082840312156126d257600080fd5b813561236c8161267f565b6000602082840312156126ef57600080fd5b5035919050565b60008060006060848603121561270b57600080fd5b83356127168161267f565b925060208401356127268161267f565b929592945050506040919091013590565b6000806000806080858703121561274d57600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461131a57600080fd5b6000806040838503121561278c57600080fd5b82356127978161267f565b91506127a560208401612769565b90509250929050565b6000602082840312156127c057600080fd5b61236c82612769565b600080604083850312156127dc57600080fd5b82356127e78161267f565b915060208301356127f78161267f565b809150509250929050565b600181811c9082168061281657607f821691505b60208210810361283657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610af557610af5612871565b6000826128bb57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610af557610af5612871565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610af557610af5612871565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561299657600080fd5b815161236c8161267f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129f15784516001600160a01b0316835293830193918301916001016129cc565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a2757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220129246ab7263c90243bc4108d931cc3ba6aa8eaa30b08403a0e3946ae710c3dc64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063e2f45605146109a5578063e7ad9fcd146109bb578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe414610913578063d257b34f14610929578063d85ba06314610949578063dd62ed3e1461095f57600080fd5b8063c0246668146108b9578063c18bc195146108d9578063c876d0b9146108f957600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d71461082a578063a9059cbb1461084a578063b62496f51461086a578063bbc0c7421461089a57600080fd5b80639fccce32146107e8578063a0d82dc5146107fe578063a1dc92bc1461081457600080fd5b8063924de9b7116101a0578063924de9b71461077d57806395d89b411461079d5780639a7a23d6146107b25780639c3b4fdc146107d257600080fd5b80638da5cb5b146107295780638ea5220f14610747578063921369131461076757600080fd5b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106be5780637b208769146106de5780637bce5a04146106fe5780638a8c523c1461071457600080fd5b8063715018a614610674578063751039fc146106895780637571336a1461069e57600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636ddd17131461061e57806370a082311461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f95780632e6ed7ef1461050f578063313ce5671461052f578063395093511461054b57600080fd5b80631f3fed8f146104a1578063203e727e146104b757806323b872dd146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a57806318160ddd146104765780631a8145bb1461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d9190612631565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612694565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126c0565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506002546103ec565b34801561049757600080fd5b506103ec601b5481565b3480156104ad57600080fd5b506103ec601a5481565b3480156104c357600080fd5b506104d76104d23660046126dd565b610afb565b005b3480156104e557600080fd5b506103c66104f43660046126f6565b610be1565b34801561050557600080fd5b5061045e61dead81565b34801561051b57600080fd5b506104d761052a366004612737565b610c8b565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c6610566366004612694565b610d53565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f00000000000000000000000056059539d91650026bb8a865f0b62210fe55be5e81565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126c0565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b50600c546103c69062010000900460ff1681565b34801561064a57600080fd5b506103ec6106593660046126c0565b6001600160a01b031660009081526020819052604090205490565b34801561068057600080fd5b506104d7610d8f565b34801561069557600080fd5b506103c6610dc5565b3480156106aa57600080fd5b506104d76106b9366004612779565b610e02565b3480156106ca57600080fd5b5060075461045e906001600160a01b031681565b3480156106ea57600080fd5b5060065461045e906001600160a01b031681565b34801561070a57600080fd5b506103ec60115481565b34801561072057600080fd5b506104d7610e57565b34801561073557600080fd5b506005546001600160a01b031661045e565b34801561075357600080fd5b5060085461045e906001600160a01b031681565b34801561077357600080fd5b506103ec60165481565b34801561078957600080fd5b506104d76107983660046127ae565b610e94565b3480156107a957600080fd5b50610390610eda565b3480156107be57600080fd5b506104d76107cd366004612779565b610ee9565b3480156107de57600080fd5b506103ec60135481565b3480156107f457600080fd5b506103ec601c5481565b34801561080a57600080fd5b506103ec60185481565b34801561082057600080fd5b506103ec60105481565b34801561083657600080fd5b506103c6610845366004612694565b610fc8565b34801561085657600080fd5b506103c6610865366004612694565b611061565b34801561087657600080fd5b506103c66108853660046126c0565b601f6020526000908152604090205460ff1681565b3480156108a657600080fd5b50600c546103c690610100900460ff1681565b3480156108c557600080fd5b506104d76108d4366004612779565b61106e565b3480156108e557600080fd5b506104d76108f43660046126dd565b6110f7565b34801561090557600080fd5b50600e546103c69060ff1681565b34801561091f57600080fd5b506103ec60095481565b34801561093557600080fd5b506103c66109443660046126dd565b6111c8565b34801561095557600080fd5b506103ec600f5481565b34801561096b57600080fd5b506103ec61097a3660046127c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b157600080fd5b506103ec600a5481565b3480156109c757600080fd5b506104d76109d6366004612737565b61131f565b3480156109e757600080fd5b506103c66113e8565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b506104d7610a213660046126c0565b611425565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612802565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612802565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114c0565b5060015b92915050565b6005546001600160a01b03163314610b2e5760405162461bcd60e51b8152600401610b259061283c565b60405180910390fd5b670de0b6b3a76400006103e8610b4360025490565b610b4e906005612887565b610b58919061289e565b610b62919061289e565b811015610bc95760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b25565b610bdb81670de0b6b3a7640000612887565b60095550565b6000610bee8484846115e4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c735760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b25565b610c8085338584036114c0565b506001949350505050565b6005546001600160a01b03163314610cb55760405162461bcd60e51b8152600401610b259061283c565b600a8183610cc386886128c0565b610ccd91906128c0565b610cd791906128c0565b1115610d165760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b25565b60108490556011839055601282905560138190558082610d3685876128c0565b610d4091906128c0565b610d4a91906128c0565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d8a9086906128c0565b6114c0565b6005546001600160a01b03163314610db95760405162461bcd60e51b8152600401610b259061283c565b610dc36000611e9b565b565b6005546000906001600160a01b03163314610df25760405162461bcd60e51b8152600401610b259061283c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e2c5760405162461bcd60e51b8152600401610b259061283c565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e815760405162461bcd60e51b8152600401610b259061283c565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610ebe5760405162461bcd60e51b8152600401610b259061283c565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612802565b6005546001600160a01b03163314610f135760405162461bcd60e51b8152600401610b259061283c565b7f00000000000000000000000056059539d91650026bb8a865f0b62210fe55be5e6001600160a01b0316826001600160a01b031603610fba5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b25565b610fc48282611eed565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561104a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b25565b61105733858584036114c0565b5060019392505050565b6000610af13384846115e4565b6005546001600160a01b031633146110985760405162461bcd60e51b8152600401610b259061283c565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111215760405162461bcd60e51b8152600401610b259061283c565b670de0b6b3a76400006103e861113660025490565b611141906005612887565b61114b919061289e565b611155919061289e565b8110156111b05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b25565b6111c281670de0b6b3a7640000612887565b600b5550565b6005546000906001600160a01b031633146111f55760405162461bcd60e51b8152600401610b259061283c565b620186a061120260025490565b61120d906001612887565b611217919061289e565b8210156112845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b25565b6103e861129060025490565b61129b906005612887565b6112a5919061289e565b8211156113115760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b25565b50600a81905560015b919050565b6005546001600160a01b031633146113495760405162461bcd60e51b8152600401610b259061283c565b600a818361135786886128c0565b61136191906128c0565b61136b91906128c0565b11156113ab5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b25565b601584905560168390556017829055601881905580826113cb85876128c0565b6113d591906128c0565b6113df91906128c0565b60145550505050565b6005546000906001600160a01b031633146114155760405162461bcd60e51b8152600401610b259061283c565b50600e805460ff19169055600190565b6005546001600160a01b0316331461144f5760405162461bcd60e51b8152600401610b259061283c565b6001600160a01b0381166114b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b25565b6114bd81611e9b565b50565b6001600160a01b0383166115225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b25565b6001600160a01b0382166115835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b25565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661160a5760405162461bcd60e51b8152600401610b25906128d3565b6001600160a01b0382166116305760405162461bcd60e51b8152600401610b2590612918565b806000036116495761164483836000611f41565b505050565b600c5460ff1615611b06576005546001600160a01b0384811691161480159061168057506005546001600160a01b03838116911614155b801561169457506001600160a01b03821615155b80156116ab57506001600160a01b03821661dead14155b80156116c15750600554600160a01b900460ff16155b15611b0657600c54610100900460ff16611759576001600160a01b0383166000908152601d602052604090205460ff168061171457506001600160a01b0382166000908152601d602052604090205460ff165b6117595760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b25565b600e5460ff16156118a0576005546001600160a01b038381169116148015906117b457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117f257507f00000000000000000000000056059539d91650026bb8a865f0b62210fe55be5e6001600160a01b0316826001600160a01b031614155b156118a057326000908152600d6020526040902054431161188d5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b25565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118e157506001600160a01b0382166000908152601e602052604090205460ff16155b156119c5576009548111156119565760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b25565b600b546001600160a01b03831660009081526020819052604090205461197c90836128c0565b11156119c05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b25565b611b06565b6001600160a01b0382166000908152601f602052604090205460ff168015611a0657506001600160a01b0383166000908152601e602052604090205460ff16155b15611a7c576009548111156119c05760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b25565b6001600160a01b0382166000908152601e602052604090205460ff16611b0657600b546001600160a01b038316600090815260208190526040902054611ac290836128c0565b1115611b065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b25565b30600090815260208190526040902054600a5481108015908190611b325750600c5462010000900460ff165b8015611b485750600554600160a01b900460ff16155b8015611b6d57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b9257506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bb757506001600160a01b0384166000908152601d602052604090205460ff16155b15611be5576005805460ff60a01b1916600160a01b179055611bd7612096565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c3357506001600160a01b0385166000908152601d602052604090205460ff165b15611c3c575060005b60008115611e87576001600160a01b0386166000908152601f602052604090205460ff168015611c6e57506000601454115b15611d5c57611c936064611c8d6014548861236090919063ffffffff16565b90612373565b905060145460155482611ca69190612887565b611cb0919061289e565b60196000828254611cc191906128c0565b9091555050601454601754611cd69083612887565b611ce0919061289e565b601b6000828254611cf191906128c0565b9091555050601454601854611d069083612887565b611d10919061289e565b601c6000828254611d2191906128c0565b9091555050601454601654611d369083612887565b611d40919061289e565b601a6000828254611d5191906128c0565b90915550611e699050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d8657506000600f54115b15611e6957611da56064611c8d600f548861236090919063ffffffff16565b9050600f5460105482611db89190612887565b611dc2919061289e565b60196000828254611dd391906128c0565b9091555050600f54601254611de89083612887565b611df2919061289e565b601b6000828254611e0391906128c0565b9091555050600f54601354611e189083612887565b611e22919061289e565b601c6000828254611e3391906128c0565b9091555050600f54601154611e489083612887565b611e52919061289e565b601a6000828254611e6391906128c0565b90915550505b8015611e7a57611e7a873083611f41565b611e84818661295b565b94505b611e92878787611f41565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f675760405162461bcd60e51b8152600401610b25906128d3565b6001600160a01b038216611f8d5760405162461bcd60e51b8152600401610b2590612918565b6001600160a01b038316600090815260208190526040902054818110156120055760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b25565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061203c9084906128c0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208891815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120c091906128c0565b6120ca91906128c0565b6120d491906128c0565b905060008215806120e3575081155b156120ed57505050565b600a546120fb906014612887565b83111561211357600a54612110906014612887565b92505b6000600283601b54866121269190612887565b612130919061289e565b61213a919061289e565b90506000612148858361237f565b9050476121548261238b565b6000612160478361237f565b9050600061217d87611c8d6019548561236090919063ffffffff16565b9050600061219a88611c8d601a548661236090919063ffffffff16565b905060006121b789611c8d601c548761236090919063ffffffff16565b9050600081836121c7868861295b565b6121d1919061295b565b6121db919061295b565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461223d576040519150601f19603f3d011682016040523d82523d6000602084013e612242565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612292576040519150601f19603f3d011682016040523d82523d6000602084013e612297565b606091505b509099505087158015906122ab5750600081115b156122fe576122ba888261254b565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461234b576040519150601f19603f3d011682016040523d82523d6000602084013e612350565b606091505b5050505050505050505050505050565b600061236c8284612887565b9392505050565b600061236c828461289e565b600061236c828461295b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123c0576123c061296e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561243e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124629190612984565b816001815181106124755761247561296e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124c0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114c0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125159085906000908690309042906004016129a1565b600060405180830381600087803b15801561252f57600080fd5b505af1158015612543573d6000803e3d6000fd5b505050505050565b612576307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114c0565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612605573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061262a9190612a12565b5050505050565b600060208083528351808285015260005b8181101561265e57858101830151858201604001528201612642565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114bd57600080fd5b600080604083850312156126a757600080fd5b82356126b28161267f565b946020939093013593505050565b6000602082840312156126d257600080fd5b813561236c8161267f565b6000602082840312156126ef57600080fd5b5035919050565b60008060006060848603121561270b57600080fd5b83356127168161267f565b925060208401356127268161267f565b929592945050506040919091013590565b6000806000806080858703121561274d57600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461131a57600080fd5b6000806040838503121561278c57600080fd5b82356127978161267f565b91506127a560208401612769565b90509250929050565b6000602082840312156127c057600080fd5b61236c82612769565b600080604083850312156127dc57600080fd5b82356127e78161267f565b915060208301356127f78161267f565b809150509250929050565b600181811c9082168061281657607f821691505b60208210810361283657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610af557610af5612871565b6000826128bb57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610af557610af5612871565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610af557610af5612871565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561299657600080fd5b815161236c8161267f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129f15784516001600160a01b0316835293830193918301916001016129cc565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a2757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220129246ab7263c90243bc4108d931cc3ba6aa8eaa30b08403a0e3946ae710c3dc64736f6c63430008130033

Deployed Bytecode Sourcemap

32543:16598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9471:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11638:169;;;;;;;;;;-1:-1:-1;11638:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11638:169:0;1023:187:1;33586:29:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;33586:29:0;1215:177:1;34023:63:0;;;;;;;;;;-1:-1:-1;34023:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32625:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;32625:51:0;1649:230:1;10591:108:0;;;;;;;;;;-1:-1:-1;10679:12:0;;10591:108;;33807:33;;;;;;;;;;;;;;;;33767;;;;;;;;;;;;;;;;38506:275;;;;;;;;;;-1:-1:-1;38506:275:0;;;;;:::i;:::-;;:::i;:::-;;12289:492;;;;;;;;;;-1:-1:-1;12289:492:0;;;;;:::i;:::-;;:::i;32728:53::-;;;;;;;;;;;;32774:6;32728:53;;39425:498;;;;;;;;;;-1:-1:-1;39425:498:0;;;;;:::i;:::-;;:::i;10433:93::-;;;;;;;;;;-1:-1:-1;10433:93:0;;10516:2;3270:36:1;;3258:2;3243:18;10433:93:0;3128:184:1;13190:215:0;;;;;;;;;;-1:-1:-1;13190:215:0;;;;;:::i;:::-;;:::i;33729:31::-;;;;;;;;;;;;;;;;32683:38;;;;;;;;;;;;;;;33037:33;;;;;;;;;;-1:-1:-1;33037:33:0;;;;;;;;41145:126;;;;;;;;;;-1:-1:-1;41145:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41235:28:0;41211:4;41235:28;;;:19;:28;;;;;;;;;41145:126;33554:28;;;;;;;;;;;;;;;;33116:30;;;;;;;;;;-1:-1:-1;33116:30:0;;;;;;;;;;;10762:127;;;;;;;;;;-1:-1:-1;10762:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10863:18:0;10836:7;10863:18;;;;;;;;;;;;10762:127;2706:103;;;;;;;;;;;;;:::i;37614:121::-;;;;;;;;;;;;;:::i;39054:167::-;;;;;;;;;;-1:-1:-1;39054:167:0;;;;;:::i;:::-;;:::i;32852:30::-;;;;;;;;;;-1:-1:-1;32852:30:0;;;;-1:-1:-1;;;;;32852:30:0;;;32817:28;;;;;;;;;;-1:-1:-1;32817:28:0;;;;-1:-1:-1;;;;;32817:28:0;;;33447:30;;;;;;;;;;;;;;;;37450:112;;;;;;;;;;;;;:::i;2055:87::-;;;;;;;;;;-1:-1:-1;2128:6:0;;-1:-1:-1;;;;;2128:6:0;2055:87;;32889:24;;;;;;;;;;-1:-1:-1;32889:24:0;;;;-1:-1:-1;;;;;32889:24:0;;;33622:31;;;;;;;;;;;;;;;;39317:100;;;;;;;;;;-1:-1:-1;39317:100:0;;;;;:::i;:::-;;:::i;9690:104::-;;;;;;;;;;;;;:::i;40637:304::-;;;;;;;;;;-1:-1:-1;40637:304:0;;;;;:::i;:::-;;:::i;33521:24::-;;;;;;;;;;;;;;;;33847:27;;;;;;;;;;;;;;;;33698:25;;;;;;;;;;;;;;;;33412:28;;;;;;;;;;;;;;;;13908:413;;;;;;;;;;-1:-1:-1;13908:413:0;;;;;:::i;:::-;;:::i;11102:175::-;;;;;;;;;;-1:-1:-1;11102:175:0;;;;;:::i;:::-;;:::i;34244:57::-;;;;;;;;;;-1:-1:-1;34244:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33077:32;;;;;;;;;;-1:-1:-1;33077:32:0;;;;;;;;;;;40447:182;;;;;;;;;;-1:-1:-1;40447:182:0;;;;;:::i;:::-;;:::i;38789:256::-;;;;;;;;;;-1:-1:-1;38789:256:0;;;;;:::i;:::-;;:::i;33333:39::-;;;;;;;;;;-1:-1:-1;33333:39:0;;;;;;;;32922:35;;;;;;;;;;;;;;;;38001:497;;;;;;;;;;-1:-1:-1;38001:497:0;;;;;:::i;:::-;;:::i;33381:27::-;;;;;;;;;;;;;;;;11340:151;;;;;;;;;;-1:-1:-1;11340:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11456:18:0;;;11429:7;11456:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11340:151;32964:33;;;;;;;;;;;;;;;;39931:508;;;;;;;;;;-1:-1:-1;39931:508:0;;;;;:::i;:::-;;:::i;37796:135::-;;;;;;;;;;;;;:::i;33484:30::-;;;;;;;;;;;;;;;;2964:201;;;;;;;;;;-1:-1:-1;2964:201:0;;;;;:::i;:::-;;:::i;33660:31::-;;;;;;;;;;;;;;;;33004:24;;;;;;;;;;;;;;;;9471:100;9525:13;9558:5;9551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9471:100;:::o;11638:169::-;11721:4;11738:39;808:10;11761:7;11770:6;11738:8;:39::i;:::-;-1:-1:-1;11795:4:0;11638:169;;;;;:::o;38506:275::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;;;;;;;;;38643:4:::1;38635;38614:13;10679:12:::0;;;10591:108;38614:13:::1;:17;::::0;38630:1:::1;38614:17;:::i;:::-;38613:26;;;;:::i;:::-;38612:35;;;;:::i;:::-;38602:6;:45;;38580:142;;;::::0;-1:-1:-1;;;38580:142:0;;5855:2:1;38580:142:0::1;::::0;::::1;5837:21:1::0;5894:2;5874:18;;;5867:30;5933:34;5913:18;;;5906:62;-1:-1:-1;;;5984:18:1;;;5977:45;6039:19;;38580:142:0::1;5653:411:1::0;38580:142:0::1;38756:17;:6:::0;38766::::1;38756:17;:::i;:::-;38733:20;:40:::0;-1:-1:-1;38506:275:0:o;12289:492::-;12429:4;12446:36;12456:6;12464:9;12475:6;12446:9;:36::i;:::-;-1:-1:-1;;;;;12522:19:0;;12495:24;12522:19;;;:11;:19;;;;;;;;808:10;12522:33;;;;;;;;12574:26;;;;12566:79;;;;-1:-1:-1;;;12566:79:0;;6271:2:1;12566:79:0;;;6253:21:1;6310:2;6290:18;;;6283:30;6349:34;6329:18;;;6322:62;-1:-1:-1;;;6400:18:1;;;6393:38;6448:19;;12566:79:0;6069:404:1;12566:79:0;12681:57;12690:6;808:10;12731:6;12712:16;:25;12681:8;:57::i;:::-;-1:-1:-1;12769:4:0;;12289:492;-1:-1:-1;;;;12289:492:0:o;39425:498::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;39660:2:::1;39648:7:::0;39632:13;39602:27:::1;39616:13:::0;39602:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39601:61;;39593:88;;;::::0;-1:-1:-1;;;39593:88:0;;6810:2:1;39593:88:0::1;::::0;::::1;6792:21:1::0;6849:2;6829:18;;;6822:30;-1:-1:-1;;;6868:18:1;;;6861:44;6922:18;;39593:88:0::1;6608:338:1::0;39593:88:0::1;39686:13;:27:::0;;;39724:15:::1;:31:::0;;;39766:15:::1;:31:::0;;;39808:9:::1;:19:::0;;;39820:7;39784:13;39853:31:::1;39742:13:::0;39702:11;39853:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39838:12;:76:::0;-1:-1:-1;;;;39425:498:0:o;13190:215::-;808:10;13278:4;13327:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13327:34:0;;;;;;;;;;13278:4;;13295:80;;13318:7;;13327:47;;13364:10;;13327:47;:::i;:::-;13295:8;:80::i;2706:103::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;2771:30:::1;2798:1;2771:18;:30::i;:::-;2706:103::o:0;37614:121::-;2128:6;;37666:4;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;37683:14:0::1;:22:::0;;-1:-1:-1;;37683:22:0::1;::::0;;;37614:121;:::o;39054:167::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39167:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39167:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39054:167::o;37450:112::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;37505:13:::1;:20:::0;;-1:-1:-1;;37536:18:0;;;;;37450:112::o;39317:100::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;39388:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39388:21:0;;::::1;::::0;;;::::1;::::0;;39317:100::o;9690:104::-;9746:13;9779:7;9772:14;;;;;:::i;40637:304::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;40781:13:::1;-1:-1:-1::0;;;;;40773:21:0::1;:4;-1:-1:-1::0;;;;;40773:21:0::1;::::0;40751:128:::1;;;::::0;-1:-1:-1;;;40751:128:0;;7153:2:1;40751:128:0::1;::::0;::::1;7135:21:1::0;7192:2;7172:18;;;7165:30;7231:34;7211:18;;;7204:62;7302:27;7282:18;;;7275:55;7347:19;;40751:128:0::1;6951:421:1::0;40751:128:0::1;40892:41;40921:4;40927:5;40892:28;:41::i;:::-;40637:304:::0;;:::o;13908:413::-;808:10;14001:4;14045:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14045:34:0;;;;;;;;;;14098:35;;;;14090:85;;;;-1:-1:-1;;;14090:85:0;;7579:2:1;14090:85:0;;;7561:21:1;7618:2;7598:18;;;7591:30;7657:34;7637:18;;;7630:62;-1:-1:-1;;;7708:18:1;;;7701:35;7753:19;;14090:85:0;7377:401:1;14090:85:0;14211:67;808:10;14234:7;14262:15;14243:16;:34;14211:8;:67::i;:::-;-1:-1:-1;14309:4:0;;13908:413;-1:-1:-1;;;13908:413:0:o;11102:175::-;11188:4;11205:42;808:10;11229:9;11240:6;11205:9;:42::i;40447:182::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40532:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40532:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40587:34;;1163:41:1;;;40587:34:0::1;::::0;1136:18:1;40587:34:0::1;;;;;;;40447:182:::0;;:::o;38789:256::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;38929:4:::1;38921;38900:13;10679:12:::0;;;10591:108;38900:13:::1;:17;::::0;38916:1:::1;38900:17;:::i;:::-;38899:26;;;;:::i;:::-;38898:35;;;;:::i;:::-;38888:6;:45;;38866:131;;;::::0;-1:-1:-1;;;38866:131:0;;7985:2:1;38866:131:0::1;::::0;::::1;7967:21:1::0;8024:2;8004:18;;;7997:30;8063:34;8043:18;;;8036:62;-1:-1:-1;;;8114:18:1;;;8107:34;8158:19;;38866:131:0::1;7783:400:1::0;38866:131:0::1;39020:17;:6:::0;39030::::1;39020:17;:::i;:::-;39008:9;:29:::0;-1:-1:-1;38789:256:0:o;38001:497::-;2128:6;;38109:4;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;38188:6:::1;38167:13;10679:12:::0;;;10591:108;38167:13:::1;:17;::::0;38183:1:::1;38167:17;:::i;:::-;38166:28;;;;:::i;:::-;38153:9;:41;;38131:144;;;::::0;-1:-1:-1;;;38131:144:0;;8390:2:1;38131:144:0::1;::::0;::::1;8372:21:1::0;8429:2;8409:18;;;8402:30;8468:34;8448:18;;;8441:62;-1:-1:-1;;;8519:18:1;;;8512:51;8580:19;;38131:144:0::1;8188:417:1::0;38131:144:0::1;38343:4;38322:13;10679:12:::0;;;10591:108;38322:13:::1;:17;::::0;38338:1:::1;38322:17;:::i;:::-;38321:26;;;;:::i;:::-;38308:9;:39;;38286:141;;;::::0;-1:-1:-1;;;38286:141:0;;8812:2:1;38286:141:0::1;::::0;::::1;8794:21:1::0;8851:2;8831:18;;;8824:30;8890:34;8870:18;;;8863:62;-1:-1:-1;;;8941:18:1;;;8934:50;9001:19;;38286:141:0::1;8610:416:1::0;38286:141:0::1;-1:-1:-1::0;38438:18:0::1;:30:::0;;;38486:4:::1;2346:1;38001:497:::0;;;:::o;39931:508::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;40167:2:::1;40155:7:::0;40139:13;40109:27:::1;40123:13:::0;40109:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40108:61;;40100:89;;;::::0;-1:-1:-1;;;40100:89:0;;9233:2:1;40100:89:0::1;::::0;::::1;9215:21:1::0;9272:2;9252:18;;;9245:30;-1:-1:-1;;;9291:18:1;;;9284:45;9346:18;;40100:89:0::1;9031:339:1::0;40100:89:0::1;40194:14;:28:::0;;;40233:16:::1;:32:::0;;;40276:16:::1;:32:::0;;;40319:10:::1;:20:::0;;;40332:7;40295:13;40366:33:::1;40252:13:::0;40211:11;40366:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40350:13;:81:::0;-1:-1:-1;;;;39931:508:0:o;37796:135::-;2128:6;;37856:4;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;37873:20:0::1;:28:::0;;-1:-1:-1;;37873:28:0::1;::::0;;;37796:135;:::o;2964:201::-;2128:6;;-1:-1:-1;;;;;2128:6:0;808:10;2275:23;2267:68;;;;-1:-1:-1;;;2267:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3053:22:0;::::1;3045:73;;;::::0;-1:-1:-1;;;3045:73:0;;9577:2:1;3045:73:0::1;::::0;::::1;9559:21:1::0;9616:2;9596:18;;;9589:30;9655:34;9635:18;;;9628:62;-1:-1:-1;;;9706:18:1;;;9699:36;9752:19;;3045:73:0::1;9375:402:1::0;3045:73:0::1;3129:28;3148:8;3129:18;:28::i;:::-;2964:201:::0;:::o;17592:380::-;-1:-1:-1;;;;;17728:19:0;;17720:68;;;;-1:-1:-1;;;17720:68:0;;9984:2:1;17720:68:0;;;9966:21:1;10023:2;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;-1:-1:-1;;;10113:18:1;;;10106:34;10157:19;;17720:68:0;9782:400:1;17720:68:0;-1:-1:-1;;;;;17807:21:0;;17799:68;;;;-1:-1:-1;;;17799:68:0;;10389:2:1;17799:68:0;;;10371:21:1;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;-1:-1:-1;;;10518:18:1;;;10511:32;10560:19;;17799:68:0;10187:398:1;17799:68:0;-1:-1:-1;;;;;17880:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17932:32;;1361:25:1;;;17932:32:0;;1334:18:1;17932:32:0;;;;;;;17592:380;;;:::o;41279:4847::-;-1:-1:-1;;;;;41411:18:0;;41403:68;;;;-1:-1:-1;;;41403:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41490:16:0;;41482:64;;;;-1:-1:-1;;;41482:64:0;;;;;;;:::i;:::-;41563:6;41573:1;41563:11;41559:93;;41591:28;41607:4;41613:2;41617:1;41591:15;:28::i;:::-;41279:4847;;;:::o;41559:93::-;41668:14;;;;41664:2487;;;2128:6;;-1:-1:-1;;;;;41721:15:0;;;2128:6;;41721:15;;;;:49;;-1:-1:-1;2128:6:0;;-1:-1:-1;;;;;41757:13:0;;;2128:6;;41757:13;;41721:49;:86;;;;-1:-1:-1;;;;;;41791:16:0;;;;41721:86;:128;;;;-1:-1:-1;;;;;;41828:21:0;;41842:6;41828:21;;41721:128;:158;;;;-1:-1:-1;41871:8:0;;-1:-1:-1;;;41871:8:0;;;;41870:9;41721:158;41699:2441;;;41919:13;;;;;;;41914:223;;-1:-1:-1;;;;;41991:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42020:23:0;;;;;;:19;:23;;;;;;;;41991:52;41957:160;;;;-1:-1:-1;;;41957:160:0;;11602:2:1;41957:160:0;;;11584:21:1;11641:2;11621:18;;;11614:30;-1:-1:-1;;;11660:18:1;;;11653:52;11722:18;;41957:160:0;11400:346:1;41957:160:0;42293:20;;;;42289:641;;;2128:6;;-1:-1:-1;;;;;42368:13:0;;;2128:6;;42368:13;;;;:72;;;42424:15;-1:-1:-1;;;;;42410:30:0;:2;-1:-1:-1;;;;;42410:30:0;;;42368:72;:129;;;;;42483:13;-1:-1:-1;;;;;42469:28:0;:2;-1:-1:-1;;;;;42469:28:0;;;42368:129;42338:573;;;42615:9;42586:39;;;;:28;:39;;;;;;42661:12;-1:-1:-1;42548:258:0;;;;-1:-1:-1;;;42548:258:0;;11953:2:1;42548:258:0;;;11935:21:1;11992:2;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12102:34;12082:18;;;12075:62;-1:-1:-1;;;12153:19:1;;;12146:40;12203:19;;42548:258:0;11751:477:1;42548:258:0;42862:9;42833:39;;;;:28;:39;;;;;42875:12;42833:54;;42338:573;-1:-1:-1;;;;;43004:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43061:35:0;;;;;;:31;:35;;;;;;;;43060:36;43004:92;42978:1147;;;43183:20;;43173:6;:30;;43139:169;;;;-1:-1:-1;;;43139:169:0;;12435:2:1;43139:169:0;;;12417:21:1;12474:2;12454:18;;;12447:30;12513:34;12493:18;;;12486:62;-1:-1:-1;;;12564:18:1;;;12557:51;12625:19;;43139:169:0;12233:417:1;43139:169:0;43391:9;;-1:-1:-1;;;;;10863:18:0;;10836:7;10863:18;;;;;;;;;;;43365:22;;:6;:22;:::i;:::-;:35;;43331:140;;;;-1:-1:-1;;;43331:140:0;;12857:2:1;43331:140:0;;;12839:21:1;12896:2;12876:18;;;12869:30;-1:-1:-1;;;12915:18:1;;;12908:49;12974:18;;43331:140:0;12655:343:1;43331:140:0;42978:1147;;;-1:-1:-1;;;;;43569:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43624:37:0;;;;;;:31;:37;;;;;;;;43623:38;43569:92;43543:582;;;43748:20;;43738:6;:30;;43704:170;;;;-1:-1:-1;;;43704:170:0;;13205:2:1;43704:170:0;;;13187:21:1;13244:2;13224:18;;;13217:30;13283:34;13263:18;;;13256:62;-1:-1:-1;;;13334:18:1;;;13327:52;13396:19;;43704:170:0;13003:418:1;43543:582:0;-1:-1:-1;;;;;43905:35:0;;;;;;:31;:35;;;;;;;;43900:225;;44025:9;;-1:-1:-1;;;;;10863:18:0;;10836:7;10863:18;;;;;;;;;;;43999:22;;:6;:22;:::i;:::-;:35;;43965:140;;;;-1:-1:-1;;;43965:140:0;;12857:2:1;43965:140:0;;;12839:21:1;12896:2;12876:18;;;12869:30;-1:-1:-1;;;12915:18:1;;;12908:49;12974:18;;43965:140:0;12655:343:1;43965:140:0;44212:4;44163:28;10863:18;;;;;;;;;;;44270;;44246:42;;;;;;;44319:35;;-1:-1:-1;44343:11:0;;;;;;;44319:35;:61;;;;-1:-1:-1;44372:8:0;;-1:-1:-1;;;44372:8:0;;;;44371:9;44319:61;:110;;;;-1:-1:-1;;;;;;44398:31:0;;;;;;:25;:31;;;;;;;;44397:32;44319:110;:153;;;;-1:-1:-1;;;;;;44447:25:0;;;;;;:19;:25;;;;;;;;44446:26;44319:153;:194;;;;-1:-1:-1;;;;;;44490:23:0;;;;;;:19;:23;;;;;;;;44489:24;44319:194;44301:326;;;44540:8;:15;;-1:-1:-1;;;;44540:15:0;-1:-1:-1;;;44540:15:0;;;44572:10;:8;:10::i;:::-;44599:8;:16;;-1:-1:-1;;;;44599:16:0;;;44301:326;44655:8;;-1:-1:-1;;;;;44765:25:0;;44639:12;44765:25;;;:19;:25;;;;;;44655:8;-1:-1:-1;;;44655:8:0;;;;;44654:9;;44765:25;;:52;;-1:-1:-1;;;;;;44794:23:0;;;;;;:19;:23;;;;;;;;44765:52;44761:100;;;-1:-1:-1;44844:5:0;44761:100;44873:12;44978:7;44974:1099;;;-1:-1:-1;;;;;45030:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45079:1;45063:13;;:17;45030:50;45026:898;;;45108:34;45138:3;45108:25;45119:13;;45108:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45101:41;;45195:13;;45177:14;;45170:4;:21;;;;:::i;:::-;45169:39;;;;:::i;:::-;45149:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45277:13:0;;45257:16;;45250:23;;:4;:23;:::i;:::-;45249:41;;;;:::i;:::-;45227:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45347:13:0;;45333:10;;45326:17;;:4;:17;:::i;:::-;45325:35;;;;:::i;:::-;45309:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45429:13:0;;45409:16;;45402:23;;:4;:23;:::i;:::-;45401:41;;;;:::i;:::-;45379:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45026:898:0;;-1:-1:-1;45026:898:0;;-1:-1:-1;;;;;45504:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45554:1;45539:12;;:16;45504:51;45500:424;;;45583:33;45612:3;45583:24;45594:12;;45583:6;:10;;:24;;;;:::i;:33::-;45576:40;;45668:12;;45651:13;;45644:4;:20;;;;:::i;:::-;45643:37;;;;:::i;:::-;45623:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;45748:12:0;;45729:15;;45722:22;;:4;:22;:::i;:::-;45721:39;;;;:::i;:::-;45699:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45816:12:0;;45803:9;;45796:16;;:4;:16;:::i;:::-;45795:33;;;;:::i;:::-;45779:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45896:12:0;;45877:15;;45870:22;;:4;:22;:::i;:::-;45869:39;;;;:::i;:::-;45847:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45500:424:0;45944:8;;45940:91;;45973:42;45989:4;46003;46010;45973:15;:42::i;:::-;46047:14;46057:4;46047:14;;:::i;:::-;;;44974:1099;46085:33;46101:4;46107:2;46111:6;46085:15;:33::i;:::-;41392:4734;;;;41279:4847;;;:::o;3325:191::-;3418:6;;;-1:-1:-1;;;;;3435:17:0;;;-1:-1:-1;;;;;;3435:17:0;;;;;;;3468:40;;3418:6;;;3435:17;3418:6;;3468:40;;3399:16;;3468:40;3388:128;3325:191;:::o;40949:188::-;-1:-1:-1;;;;;41032:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41032:39:0;;;;;;;;;;41089:40;;41032:39;;:31;41089:40;;;40949:188;;:::o;14811:733::-;-1:-1:-1;;;;;14951:20:0;;14943:70;;;;-1:-1:-1;;;14943:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15032:23:0;;15024:71;;;;-1:-1:-1;;;15024:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15192:17:0;;15168:21;15192:17;;;;;;;;;;;15228:23;;;;15220:74;;;;-1:-1:-1;;;15220:74:0;;13761:2:1;15220:74:0;;;13743:21:1;13800:2;13780:18;;;13773:30;13839:34;13819:18;;;13812:62;-1:-1:-1;;;13890:18:1;;;13883:36;13936:19;;15220:74:0;13559:402:1;15220:74:0;-1:-1:-1;;;;;15330:17:0;;;:9;:17;;;;;;;;;;;15350:22;;;15330:42;;15394:20;;;;;;;;:30;;15366:6;;15330:9;15394:30;;15366:6;;15394:30;:::i;:::-;;;;;;;;15459:9;-1:-1:-1;;;;;15442:35:0;15451:6;-1:-1:-1;;;;;15442:35:0;;15470:6;15442:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15442:35:0;;;;;;;;14932:612;14811:733;;;:::o;47254:1882::-;47337:4;47293:23;10863:18;;;;;;;;;;;47293:50;;47354:25;47443:12;;47422:18;;47401;;47382:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47354:101;-1:-1:-1;47466:12:0;47495:20;;;:46;;-1:-1:-1;47519:22:0;;47495:46;47491:85;;;47558:7;;;47254:1882::o;47491:85::-;47610:18;;:23;;47631:2;47610:23;:::i;:::-;47592:15;:41;47588:115;;;47668:18;;:23;;47689:2;47668:23;:::i;:::-;47650:41;;47588:115;47764:23;47851:1;47831:17;47809:18;;47791:15;:36;;;;:::i;:::-;47790:58;;;;:::i;:::-;:62;;;;:::i;:::-;47764:88;-1:-1:-1;47863:26:0;47892:36;:15;47764:88;47892:19;:36::i;:::-;47863:65;-1:-1:-1;47969:21:0;48003:36;47863:65;48003:16;:36::i;:::-;48052:18;48073:44;:21;48099:17;48073:25;:44::i;:::-;48052:65;;48124:21;48148:55;48185:17;48148:32;48163:16;;48148:10;:14;;:32;;;;:::i;:55::-;48124:79;;48214:23;48240:57;48279:17;48240:34;48255:18;;48240:10;:14;;:34;;;;:::i;:57::-;48214:83;;48308:17;48328:51;48361:17;48328:28;48343:12;;48328:10;:14;;:28;;;;:::i;:51::-;48308:71;-1:-1:-1;48392:23:0;48308:71;48447:15;48418:26;48431:13;48418:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48508:1;48487:18;:22;;;48514:16;:20;;;48545:18;:22;;;48578:12;:16;;;48629:9;;48621:45;;48392:82;;-1:-1:-1;;;;;;48629:9:0;;48652;;48621:45;48508:1;48621:45;48652:9;48629;48621:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48699:15:0;;48691:57;;48607:59;;-1:-1:-1;;;;;;48699:15:0;;48728;;48691:57;;;;48728:15;48699;48691:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48677:71:0;;-1:-1:-1;;48767:19:0;;;;;:42;;;48808:1;48790:15;:19;48767:42;48763:278;;;48826:46;48839:15;48856;48826:12;:46::i;:::-;48996:18;;48892:137;;;14378:25:1;;;14434:2;14419:18;;14412:34;;;14462:18;;;14455:34;;;;48892:137:0;;;;;;14366:2:1;48892:137:0;;;48763:278;49075:13;;49067:61;;-1:-1:-1;;;;;49075:13:0;;;;49102:21;;49067:61;;;;49102:21;49075:13;49067:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47254:1882:0:o;23045:98::-;23103:7;23130:5;23134:1;23130;:5;:::i;:::-;23123:12;23045:98;-1:-1:-1;;;23045:98:0:o;23444:::-;23502:7;23529:5;23533:1;23529;:5;:::i;22688:98::-;22746:7;22773:5;22777:1;22773;:5;:::i;46134:589::-;46284:16;;;46298:1;46284:16;;;;;;;;46260:21;;46284:16;;;;;;;;;;-1:-1:-1;46284:16:0;46260:40;;46329:4;46311;46316:1;46311:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46311:23:0;;;-1:-1:-1;;;;;46311:23:0;;;;;46355:15;-1:-1:-1;;;;;46355:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46345:4;46350:1;46345:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46345:32:0;;;-1:-1:-1;;;;;46345:32:0;;;;;46390:62;46407:4;46422:15;46440:11;46390:8;:62::i;:::-;46491:224;;-1:-1:-1;;;46491:224:0;;-1:-1:-1;;;;;46491:15:0;:66;;;;:224;;46572:11;;46598:1;;46642:4;;46669;;46689:15;;46491:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46189:534;46134:589;:::o;46731:515::-;46879:62;46896:4;46911:15;46929:11;46879:8;:62::i;:::-;47188:9;;46984:254;;-1:-1:-1;;;46984:254:0;;47056:4;46984:254;;;16346:34:1;16396:18;;;16389:34;;;47102:1:0;16439:18:1;;;16432:34;;;16482:18;;;16475:34;-1:-1:-1;;;;;47188:9:0;;;16525:19:1;;;16518:44;47212:15:0;16578:19:1;;;16571:35;46984:15:0;:31;;;;;;47023:9;;16280:19:1;;46984:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46731:515;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2738:385::-;2824:6;2832;2840;2848;2901:3;2889:9;2880:7;2876:23;2872:33;2869:53;;;2918:1;2915;2908:12;2869:53;-1:-1:-1;;2941:23:1;;;3011:2;2996:18;;2983:32;;-1:-1:-1;3062:2:1;3047:18;;3034:32;;3113:2;3098:18;3085:32;;-1:-1:-1;2738:385:1;-1:-1:-1;2738:385:1:o;3317:160::-;3382:20;;3438:13;;3431:21;3421:32;;3411:60;;3467:1;3464;3457:12;3482:315;3547:6;3555;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;3663:9;3650:23;3682:31;3707:5;3682:31;:::i;:::-;3732:5;-1:-1:-1;3756:35:1;3787:2;3772:18;;3756:35;:::i;:::-;3746:45;;3482:315;;;;;:::o;3802:180::-;3858:6;3911:2;3899:9;3890:7;3886:23;3882:32;3879:52;;;3927:1;3924;3917:12;3879:52;3950:26;3966:9;3950:26;:::i;3987:388::-;4055:6;4063;4116:2;4104:9;4095:7;4091:23;4087:32;4084:52;;;4132:1;4129;4122:12;4084:52;4171:9;4158:23;4190:31;4215:5;4190:31;:::i;:::-;4240:5;-1:-1:-1;4297:2:1;4282:18;;4269:32;4310:33;4269:32;4310:33;:::i;:::-;4362:7;4352:17;;;3987:388;;;;;:::o;4380:380::-;4459:1;4455:12;;;;4502;;;4523:61;;4577:4;4569:6;4565:17;4555:27;;4523:61;4630:2;4622:6;4619:14;4599:18;4596:38;4593:161;;4676:10;4671:3;4667:20;4664:1;4657:31;4711:4;4708:1;4701:15;4739:4;4736:1;4729:15;4593:161;;4380:380;;;:::o;4765:356::-;4967:2;4949:21;;;4986:18;;;4979:30;5045:34;5040:2;5025:18;;5018:62;5112:2;5097:18;;4765:356::o;5126:127::-;5187:10;5182:3;5178:20;5175:1;5168:31;5218:4;5215:1;5208:15;5242:4;5239:1;5232:15;5258:168;5331:9;;;5362;;5379:15;;;5373:22;;5359:37;5349:71;;5400:18;;:::i;5431:217::-;5471:1;5497;5487:132;;5541:10;5536:3;5532:20;5529:1;5522:31;5576:4;5573:1;5566:15;5604:4;5601:1;5594:15;5487:132;-1:-1:-1;5633:9:1;;5431:217::o;6478:125::-;6543:9;;;6564:10;;;6561:36;;;6577:18;;:::i;10590:401::-;10792:2;10774:21;;;10831:2;10811:18;;;10804:30;10870:34;10865:2;10850:18;;10843:62;-1:-1:-1;;;10936:2:1;10921:18;;10914:35;10981:3;10966:19;;10590:401::o;10996:399::-;11198:2;11180:21;;;11237:2;11217:18;;;11210:30;11276:34;11271:2;11256:18;;11249:62;-1:-1:-1;;;11342:2:1;11327:18;;11320:33;11385:3;11370:19;;10996:399::o;13426:128::-;13493:9;;;13514:11;;;13511:37;;;13528:18;;:::i;14632:127::-;14693:10;14688:3;14684:20;14681:1;14674:31;14724:4;14721:1;14714:15;14748:4;14745:1;14738:15;14764:251;14834:6;14887:2;14875:9;14866:7;14862:23;14858:32;14855:52;;;14903:1;14900;14893:12;14855:52;14935:9;14929:16;14954:31;14979:5;14954:31;:::i;15020:980::-;15282:4;15330:3;15319:9;15315:19;15361:6;15350:9;15343:25;15387:2;15425:6;15420:2;15409:9;15405:18;15398:34;15468:3;15463:2;15452:9;15448:18;15441:31;15492:6;15527;15521:13;15558:6;15550;15543:22;15596:3;15585:9;15581:19;15574:26;;15635:2;15627:6;15623:15;15609:29;;15656:1;15666:195;15680:6;15677:1;15674:13;15666:195;;;15745:13;;-1:-1:-1;;;;;15741:39:1;15729:52;;15836:15;;;;15801:12;;;;15777:1;15695:9;15666:195;;;-1:-1:-1;;;;;;;15917:32:1;;;;15912:2;15897:18;;15890:60;-1:-1:-1;;;15981:3:1;15966:19;15959:35;15878:3;15020:980;-1:-1:-1;;;15020:980:1:o;16617:306::-;16705:6;16713;16721;16774:2;16762:9;16753:7;16749:23;16745:32;16742:52;;;16790:1;16787;16780:12;16742:52;16819:9;16813:16;16803:26;;16869:2;16858:9;16854:18;16848:25;16838:35;;16913:2;16902:9;16898:18;16892:25;16882:35;;16617:306;;;;;:::o

Swarm Source

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