ETH Price: $2,954.93 (-6.41%)
Gas: 8 Gwei

Token

Doraemon 小叮噹 (DORAEMON)
 

Overview

Max Total Supply

5,544,332,211 DORAEMON

Holders

180

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000010152477362 DORAEMON

Value
$0.00
0x918f6a1dd67efafeea3daa5c595f20a61b975fe0
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:
Doraemon

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-29
*/

// SPDX-License-Identifier: MIT
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣤⣴⣶⣶⣶⣶⣶⠶⣶⣤⣤⣀⠀⠀⠀⠀⠀⠀ 
// ⠀⠀⠀⠀⠀⠀⠀⢀⣤⣾⣿⣿⣿⠁⠀⢀⠈⢿⢀⣀⠀⠹⣿⣿⣿⣦⣄⠀⠀⠀ 
// ⠀⠀⠀⠀⠀⠀⣴⣿⣿⣿⣿⣿⠿⠀⠀⣟⡇⢘⣾⣽⠀⠀⡏⠉⠙⢛⣿⣷⡖⠀ 
// ⠀⠀⠀⠀⠀⣾⣿⣿⡿⠿⠷⠶⠤⠙⠒⠀⠒⢻⣿⣿⡷⠋⠀⠴⠞⠋⠁⢙⣿⣄ 
// ⠀⠀⠀⠀⢸⣿⣿⣯⣤⣤⣤⣤⣤⡄⠀⠀⠀⠀⠉⢹⡄⠀⠀⠀⠛⠛⠋⠉⠹⡇ 
// ⠀⠀⠀⠀⢸⣿⣿⠀⠀⠀⣀⣠⣤⣤⣤⣤⣤⣤⣤⣼⣇⣀⣀⣀⣛⣛⣒⣲⢾⡷ 
// ⢀⠤⠒⠒⢼⣿⣿⠶⠞⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠁⠀⣼⠃ 
// ⢮⠀⠀⠀⠀⣿⣿⣆⠀⠀⠻⣿⡿⠛⠉⠉⠁⠀⠉⠉⠛⠿⣿⣿⠟⠁⠀⣼⠃⠀ 
// ⠈⠓⠶⣶⣾⣿⣿⣿⣧⡀⠀⠈⠒⢤⣀⣀⡀⠀⠀⣀⣀⡠⠚⠁⠀⢀⡼⠃⠀⠀ 
// ⠀⠀⠀⠈⢿⣿⣿⣿⣿⣿⣷⣤⣤⣤⣤⣭⣭⣭⣭⣭⣥⣤⣤⣤⣴⣟⠁
// Telegram: https://t.me/DoraemonPortal
pragma solidity 0.8.18;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

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
     * transacgtion 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
    );
}

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 to 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 {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

contract Doraemon 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 marketingWallet;
    address public devWallet;

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

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

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(address _marketingWallet)
        ERC20(unicode"Doraemon 小叮噹", "DORAEMON")
    {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
        uint256 _sellMarketingFee = 25;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 5544332211 * 1e18;
        maxTransactionAmount = 11088664422 * 1e16;
        maxWallet = 11088664422 * 1e16;
        swapTokensAtAmount = (totalSupply * 10) / 3000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = _marketingWallet;
        devWallet = address(owner());

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    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() * 10) / 1000,
            "Swap amount cannot be higher than 1% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ) {
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Max wallet exceeded"
                );
            } 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 &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = !swapping;
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }
            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

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

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

        uint256 ethForMarketing = ethBalance.mul(80).div(100);
        uint256 ethForOwner = ethBalance.mul(20).div(100);

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

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

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

    function backupSwapBack() external onlyOwner {
        swapBack();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_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":[],"name":"backupSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b5060405162005b1d38038062005b1d833981810160405281019062000037919062000b62565b6040518060400160405280601281526020017f446f7261656d6f6e20e5b08fe58faee599b900000000000000000000000000008152506040518060400160405280600881526020017f444f5241454d4f4e0000000000000000000000000000000000000000000000008152508160039081620000b4919062000e0e565b508060049081620000c6919062000e0e565b5050506000620000db620005c560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a6816001620005cd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000226573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024c919062000b62565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002da919062000b62565b6040518363ffffffff1660e01b8152600401620002f992919062000f06565b6020604051808303816000875af115801562000319573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033f919062000b62565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200038760a0516001620005cd60201b60201c565b6200039c60a0516001620006ca60201b60201c565b60006019905060008060006019905060008060006b11ea2a036849ecd656ec000090506a5bb9290734adb25de600006008819055506a5bb9290734adb25de60000600a81905550610bb8600a82620003f5919062000f62565b62000401919062000fdc565b60098190555086600c8190555085600d8190555084600e81905550600e54600d54600c5462000431919062001014565b6200043d919062001014565b600b819055508360108190555082601181905550816012819055506012546011546010546200046d919062001014565b62000479919062001014565b600f8190555088600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004d06200076b60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000532620005246200076b60201b60201c565b60016200079560201b60201c565b620005453060016200079560201b60201c565b6200055a61dead60016200079560201b60201c565b6200057c6200056e6200076b60201b60201c565b6001620005cd60201b60201c565b6200058f306001620005cd60201b60201c565b620005a461dead6001620005cd60201b60201c565b620005b63382620008e260201b60201c565b5050505050505050506200121e565b600033905090565b620005dd620005c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200066f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066690620010b0565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007a5620005c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000837576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082e90620010b0565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008d69190620010ef565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000954576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200094b906200115c565b60405180910390fd5b620009686000838362000a9060201b60201c565b620009848160025462000a9560201b6200211a1790919060201c565b600281905550620009e2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a9560201b6200211a1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a8491906200118f565b60405180910390a35050565b505050565b600080828462000aa6919062001014565b90508381101562000aee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ae590620011fc565b60405180910390fd5b8091505092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b2a8262000afd565b9050919050565b62000b3c8162000b1d565b811462000b4857600080fd5b50565b60008151905062000b5c8162000b31565b92915050565b60006020828403121562000b7b5762000b7a62000af8565b5b600062000b8b8482850162000b4b565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c1657607f821691505b60208210810362000c2c5762000c2b62000bce565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c57565b62000ca2868362000c57565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cef62000ce962000ce38462000cba565b62000cc4565b62000cba565b9050919050565b6000819050919050565b62000d0b8362000cce565b62000d2362000d1a8262000cf6565b84845462000c64565b825550505050565b600090565b62000d3a62000d2b565b62000d4781848462000d00565b505050565b5b8181101562000d6f5762000d6360008262000d30565b60018101905062000d4d565b5050565b601f82111562000dbe5762000d888162000c32565b62000d938462000c47565b8101602085101562000da3578190505b62000dbb62000db28562000c47565b83018262000d4c565b50505b505050565b600082821c905092915050565b600062000de36000198460080262000dc3565b1980831691505092915050565b600062000dfe838362000dd0565b9150826002028217905092915050565b62000e198262000b94565b67ffffffffffffffff81111562000e355762000e3462000b9f565b5b62000e41825462000bfd565b62000e4e82828562000d73565b600060209050601f83116001811462000e86576000841562000e71578287015190505b62000e7d858262000df0565b86555062000eed565b601f19841662000e968662000c32565b60005b8281101562000ec05784890151825560018201915060208501945060208101905062000e99565b8683101562000ee0578489015162000edc601f89168262000dd0565b8355505b6001600288020188555050505b505050505050565b62000f008162000b1d565b82525050565b600060408201905062000f1d600083018562000ef5565b62000f2c602083018462000ef5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f6f8262000cba565b915062000f7c8362000cba565b925082820262000f8c8162000cba565b9150828204841483151762000fa65762000fa562000f33565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fe98262000cba565b915062000ff68362000cba565b92508262001009576200100862000fad565b5b828204905092915050565b6000620010218262000cba565b91506200102e8362000cba565b925082820190508082111562001049576200104862000f33565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010986020836200104f565b9150620010a58262001060565b602082019050919050565b60006020820190508181036000830152620010cb8162001089565b9050919050565b60008115159050919050565b620010e981620010d2565b82525050565b6000602082019050620011066000830184620010de565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001144601f836200104f565b915062001151826200110c565b602082019050919050565b60006020820190508181036000830152620011778162001135565b9050919050565b620011898162000cba565b82525050565b6000602082019050620011a660008301846200117e565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620011e4601b836200104f565b9150620011f182620011ac565b602082019050919050565b600060208201905081810360008301526200121781620011d5565b9050919050565b60805160a0516148bd620012606000396000818161102f0152611606015260008181610bd9015281816133fa015281816134db015261350201526148bd6000f3fe60806040526004361061028c5760003560e01c80638ea5220f1161015a578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e146109f5578063e2f4560514610a32578063f11a24d314610a5d578063f2fde38b14610a88578063f637434214610ab1578063f8b45b0514610adc57610293565b8063c0246668146108e7578063c17b5b8c14610910578063c18bc19514610939578063c8c8ebe414610962578063d257b34f1461098d578063d85ba063146109ca57610293565b8063a0d82dc511610113578063a0d82dc5146107c5578063a457c2d7146107f0578063a9059cbb1461082d578063aacebbe31461086a578063aea6b31014610893578063b62496f5146108aa57610293565b80638ea5220f146106c557806392136913146106f057806395d89b411461071b5780639a7a23d6146107465780639c3b4fdc1461076f5780639fccce321461079a57610293565b8063313ce567116101fe578063715018a6116101b7578063715018a6146105db5780637571336a146105f257806375f0a8741461061b5780637bce5a04146106465780638095d564146106715780638da5cb5b1461069a57610293565b8063313ce567146104a357806339509351146104ce57806349bd5a5e1461050b5780634fbee193146105365780636a486a8e1461057357806370a082311461059e57610293565b80631816467f116102505780631816467f146103935780631a8145bb146103bc5780631f3fed8f146103e7578063203e727e1461041257806323b872dd1461043b57806327c8f8351461047857610293565b806306fdde0314610298578063095ea7b3146102c357806310d5de53146103005780631694505e1461033d57806318160ddd1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610b07565b6040516102ba91906136da565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190613795565b610b99565b6040516102f791906137f0565b60405180910390f35b34801561030c57600080fd5b506103276004803603810190610322919061380b565b610bb7565b60405161033491906137f0565b60405180910390f35b34801561034957600080fd5b50610352610bd7565b60405161035f9190613897565b60405180910390f35b34801561037457600080fd5b5061037d610bfb565b60405161038a91906138c1565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b5919061380b565b610c05565b005b3480156103c857600080fd5b506103d1610d5c565b6040516103de91906138c1565b60405180910390f35b3480156103f357600080fd5b506103fc610d62565b60405161040991906138c1565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906138dc565b610d68565b005b34801561044757600080fd5b50610462600480360381019061045d9190613909565b610e92565b60405161046f91906137f0565b60405180910390f35b34801561048457600080fd5b5061048d610f6b565b60405161049a919061396b565b60405180910390f35b3480156104af57600080fd5b506104b8610f71565b6040516104c591906139a2565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613795565b610f7a565b60405161050291906137f0565b60405180910390f35b34801561051757600080fd5b5061052061102d565b60405161052d919061396b565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061380b565b611051565b60405161056a91906137f0565b60405180910390f35b34801561057f57600080fd5b506105886110a7565b60405161059591906138c1565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c0919061380b565b6110ad565b6040516105d291906138c1565b60405180910390f35b3480156105e757600080fd5b506105f06110f5565b005b3480156105fe57600080fd5b50610619600480360381019061061491906139e9565b61124d565b005b34801561062757600080fd5b5061063061133f565b60405161063d919061396b565b60405180910390f35b34801561065257600080fd5b5061065b611365565b60405161066891906138c1565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613a29565b61136b565b005b3480156106a657600080fd5b506106af611485565b6040516106bc919061396b565b60405180910390f35b3480156106d157600080fd5b506106da6114af565b6040516106e7919061396b565b60405180910390f35b3480156106fc57600080fd5b506107056114d5565b60405161071291906138c1565b60405180910390f35b34801561072757600080fd5b506107306114db565b60405161073d91906136da565b60405180910390f35b34801561075257600080fd5b5061076d600480360381019061076891906139e9565b61156d565b005b34801561077b57600080fd5b506107846116a0565b60405161079191906138c1565b60405180910390f35b3480156107a657600080fd5b506107af6116a6565b6040516107bc91906138c1565b60405180910390f35b3480156107d157600080fd5b506107da6116ac565b6040516107e791906138c1565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613795565b6116b2565b60405161082491906137f0565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613795565b61177f565b60405161086191906137f0565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c919061380b565b61179d565b005b34801561089f57600080fd5b506108a86118f4565b005b3480156108b657600080fd5b506108d160048036038101906108cc919061380b565b611995565b6040516108de91906137f0565b60405180910390f35b3480156108f357600080fd5b5061090e600480360381019061090991906139e9565b6119b5565b005b34801561091c57600080fd5b5061093760048036038101906109329190613a29565b611af5565b005b34801561094557600080fd5b50610960600480360381019061095b91906138dc565b611c0f565b005b34801561096e57600080fd5b50610977611d39565b60405161098491906138c1565b60405180910390f35b34801561099957600080fd5b506109b460048036038101906109af91906138dc565b611d3f565b6040516109c191906137f0565b60405180910390f35b3480156109d657600080fd5b506109df611eaf565b6040516109ec91906138c1565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a179190613a7c565b611eb5565b604051610a2991906138c1565b60405180910390f35b348015610a3e57600080fd5b50610a47611f3c565b604051610a5491906138c1565b60405180910390f35b348015610a6957600080fd5b50610a72611f42565b604051610a7f91906138c1565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa919061380b565b611f48565b005b348015610abd57600080fd5b50610ac661210e565b604051610ad391906138c1565b60405180910390f35b348015610ae857600080fd5b50610af1612114565b604051610afe91906138c1565b60405180910390f35b606060038054610b1690613aeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4290613aeb565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610bad610ba6612178565b8484612180565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c0d612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613b68565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610d70612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690613b68565b60405180910390fd5b670de0b6b3a76400006103e86001610e15610bfb565b610e1f9190613bb7565b610e299190613c28565b610e339190613c28565b811015610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613ccb565b60405180910390fd5b670de0b6b3a764000081610e899190613bb7565b60088190555050565b6000610e9f848484612349565b610f6084610eab612178565b610f5b8560405180606001604052806028815260200161483b60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f11612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf59092919063ffffffff16565b612180565b600190509392505050565b61dead81565b60006012905090565b6000611023610f87612178565b8461101e8560016000610f98612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211a90919063ffffffff16565b612180565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fd612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613b68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611255612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613b68565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b611373612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613b68565b60405180910390fd5b82600c8190555081600d8190555080600e81905550600e54600d54600c5461142a9190613ceb565b6114349190613ceb565b600b819055506019600b541115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613d6b565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6060600480546114ea90613aeb565b80601f016020809104026020016040519081016040528092919081815260200182805461151690613aeb565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b5050505050905090565b611575612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613b68565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613dfd565b60405180910390fd5b61169c8282612d59565b5050565b600e5481565b60155481565b60125481565b60006117756116bf612178565b846117708560405180606001604052806025815260200161486360259139600160006116e9612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf59092919063ffffffff16565b612180565b6001905092915050565b600061179361178c612178565b8484612349565b6001905092915050565b6117a5612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613b68565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118fc612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613b68565b60405180910390fd5b611993612dfa565b565b60186020528060005260406000206000915054906101000a900460ff1681565b6119bd612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4390613b68565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ae991906137f0565b60405180910390a25050565b611afd612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613b68565b60405180910390fd5b826010819055508160118190555080601281905550601254601154601054611bb49190613ceb565b611bbe9190613ceb565b600f819055506063600f541115611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0190613e69565b60405180910390fd5b505050565b611c17612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90613b68565b60405180910390fd5b670de0b6b3a76400006103e86005611cbc610bfb565b611cc69190613bb7565b611cd09190613c28565b611cda9190613c28565b811015611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613efb565b60405180910390fd5b670de0b6b3a764000081611d309190613bb7565b600a8190555050565b60085481565b6000611d49612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613b68565b60405180910390fd5b620186a06001611de6610bfb565b611df09190613bb7565b611dfa9190613c28565b821015611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390613f8d565b60405180910390fd5b6103e8600a611e49610bfb565b611e539190613bb7565b611e5d9190613c28565b821115611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e969061401f565b60405180910390fd5b8160098190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600d5481565b611f50612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690613b68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361204e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612045906140b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600a5481565b60008082846121299190613ceb565b90508381101561216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121659061411d565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906141af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590614241565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161233c91906138c1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90614365565b60405180910390fd5b600081036124405761243b83836000613004565b612cf0565b612448611485565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124b65750612486611485565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ef5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612529575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125425750600560149054906101000a900460ff16155b1561283057601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125ea5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561269157600854811115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b906143f7565b60405180910390fd5b600a54612640836110ad565b8261264b9190613ceb565b111561268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390614463565b60405180910390fd5b61282f565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127345750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127835760085481111561277e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612775906144f5565b60405180910390fd5b61282e565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661282d57600a546127e0836110ad565b826127eb9190613ceb565b111561282c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282390614463565b60405180910390fd5b5b5b5b5b600061283b306110ad565b9050600060095482101590508080156128615750600560149054906101000a900460ff16155b80156128b75750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561290d5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129635750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129a7576001600560146101000a81548160ff02191690831515021790555061298b612dfa565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a5d5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a6757600090505b60008115612ce057601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612aca57506000600f54115b15612b9757612af76064612ae9600f548861329790919063ffffffff16565b61331190919063ffffffff16565b9050600f5460115482612b0a9190613bb7565b612b149190613c28565b60146000828254612b259190613ceb565b92505081905550600f5460125482612b3d9190613bb7565b612b479190613c28565b60156000828254612b589190613ceb565b92505081905550600f5460105482612b709190613bb7565b612b7a9190613c28565b60136000828254612b8b9190613ceb565b92505081905550612cbc565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bf257506000600b54115b15612cbb57612c1f6064612c11600b548861329790919063ffffffff16565b61331190919063ffffffff16565b9050600b54600d5482612c329190613bb7565b612c3c9190613c28565b60146000828254612c4d9190613ceb565b92505081905550600b54600e5482612c659190613bb7565b612c6f9190613c28565b60156000828254612c809190613ceb565b92505081905550600b54600c5482612c989190613bb7565b612ca29190613c28565b60136000828254612cb39190613ceb565b925050819055505b5b6000811115612cd157612cd0873083613004565b5b8085612cdd9190614515565b94505b612ceb878787613004565b505050505b505050565b6000838311158290612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3491906136da565b60405180910390fd5b5060008385612d4c9190614515565b9050809150509392505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000612e05306110ad565b90506000601554601354601454612e1c9190613ceb565b612e269190613ceb565b9050600080831480612e385750600082145b15612e4557505050613002565b60008390506000479050612e588261335b565b6000612e6d824761359890919063ffffffff16565b90506000612e986064612e8a60508561329790919063ffffffff16565b61331190919063ffffffff16565b90506000612ec36064612eb560148661329790919063ffffffff16565b61331190919063ffffffff16565b9050600060148190555060006013819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612f239061457a565b60006040518083038185875af1925050503d8060008114612f60576040519150601f19603f3d011682016040523d82523d6000602084013e612f65565b606091505b505080965050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612fb19061457a565b60006040518083038185875af1925050503d8060008114612fee576040519150601f19603f3d011682016040523d82523d6000602084013e612ff3565b606091505b50508096505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306a906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d990614365565b60405180910390fd5b6130ed8383836135e2565b61315881604051806060016040528060268152602001614815602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131eb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161328a91906138c1565b60405180910390a3505050565b60008083036132a9576000905061330b565b600082846132b79190613bb7565b90508284826132c69190613c28565b14613306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fd90614601565b60405180910390fd5b809150505b92915050565b600061335383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135e7565b905092915050565b6000600267ffffffffffffffff81111561337857613377614621565b5b6040519080825280602002602001820160405280156133a65781602001602082028036833780820191505090505b50905030816000815181106133be576133bd614650565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613463573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134879190614694565b8160018151811061349b5761349a614650565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613500307f000000000000000000000000000000000000000000000000000000000000000084612180565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135629594939291906147ba565b600060405180830381600087803b15801561357c57600080fd5b505af1158015613590573d6000803e3d6000fd5b505050505050565b60006135da83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cf5565b905092915050565b505050565b6000808311829061362e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362591906136da565b60405180910390fd5b506000838561363d9190613c28565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613684578082015181840152602081019050613669565b60008484015250505050565b6000601f19601f8301169050919050565b60006136ac8261364a565b6136b68185613655565b93506136c6818560208601613666565b6136cf81613690565b840191505092915050565b600060208201905081810360008301526136f481846136a1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061372c82613701565b9050919050565b61373c81613721565b811461374757600080fd5b50565b60008135905061375981613733565b92915050565b6000819050919050565b6137728161375f565b811461377d57600080fd5b50565b60008135905061378f81613769565b92915050565b600080604083850312156137ac576137ab6136fc565b5b60006137ba8582860161374a565b92505060206137cb85828601613780565b9150509250929050565b60008115159050919050565b6137ea816137d5565b82525050565b600060208201905061380560008301846137e1565b92915050565b600060208284031215613821576138206136fc565b5b600061382f8482850161374a565b91505092915050565b6000819050919050565b600061385d61385861385384613701565b613838565b613701565b9050919050565b600061386f82613842565b9050919050565b600061388182613864565b9050919050565b61389181613876565b82525050565b60006020820190506138ac6000830184613888565b92915050565b6138bb8161375f565b82525050565b60006020820190506138d660008301846138b2565b92915050565b6000602082840312156138f2576138f16136fc565b5b600061390084828501613780565b91505092915050565b600080600060608486031215613922576139216136fc565b5b60006139308682870161374a565b93505060206139418682870161374a565b925050604061395286828701613780565b9150509250925092565b61396581613721565b82525050565b6000602082019050613980600083018461395c565b92915050565b600060ff82169050919050565b61399c81613986565b82525050565b60006020820190506139b76000830184613993565b92915050565b6139c6816137d5565b81146139d157600080fd5b50565b6000813590506139e3816139bd565b92915050565b60008060408385031215613a00576139ff6136fc565b5b6000613a0e8582860161374a565b9250506020613a1f858286016139d4565b9150509250929050565b600080600060608486031215613a4257613a416136fc565b5b6000613a5086828701613780565b9350506020613a6186828701613780565b9250506040613a7286828701613780565b9150509250925092565b60008060408385031215613a9357613a926136fc565b5b6000613aa18582860161374a565b9250506020613ab28582860161374a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b0357607f821691505b602082108103613b1657613b15613abc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b52602083613655565b9150613b5d82613b1c565b602082019050919050565b60006020820190508181036000830152613b8181613b45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bc28261375f565b9150613bcd8361375f565b9250828202613bdb8161375f565b91508282048414831517613bf257613bf1613b88565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c338261375f565b9150613c3e8361375f565b925082613c4e57613c4d613bf9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613cb5602f83613655565b9150613cc082613c59565b604082019050919050565b60006020820190508181036000830152613ce481613ca8565b9050919050565b6000613cf68261375f565b9150613d018361375f565b9250828201905080821115613d1957613d18613b88565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d55601d83613655565b9150613d6082613d1f565b602082019050919050565b60006020820190508181036000830152613d8481613d48565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613de7603983613655565b9150613df282613d8b565b604082019050919050565b60006020820190508181036000830152613e1681613dda565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b6000613e53601d83613655565b9150613e5e82613e1d565b602082019050919050565b60006020820190508181036000830152613e8281613e46565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613ee5602483613655565b9150613ef082613e89565b604082019050919050565b60006020820190508181036000830152613f1481613ed8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613f77603583613655565b9150613f8282613f1b565b604082019050919050565b60006020820190508181036000830152613fa681613f6a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614009603283613655565b915061401482613fad565b604082019050919050565b6000602082019050818103600083015261403881613ffc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061409b602683613655565b91506140a68261403f565b604082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614107601b83613655565b9150614112826140d1565b602082019050919050565b60006020820190508181036000830152614136816140fa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614199602483613655565b91506141a48261413d565b604082019050919050565b600060208201905081810360008301526141c88161418c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422b602283613655565b9150614236826141cf565b604082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bd602583613655565b91506142c882614261565b604082019050919050565b600060208201905081810360008301526142ec816142b0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434f602383613655565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143e1603583613655565b91506143ec82614385565b604082019050919050565b60006020820190508181036000830152614410816143d4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061444d601383613655565b915061445882614417565b602082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144df603683613655565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b60006145208261375f565b915061452b8361375f565b925082820390508181111561454357614542613b88565b5b92915050565b600081905092915050565b50565b6000614564600083614549565b915061456f82614554565b600082019050919050565b600061458582614557565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145eb602183613655565b91506145f68261458f565b604082019050919050565b6000602082019050818103600083015261461a816145de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061468e81613733565b92915050565b6000602082840312156146aa576146a96136fc565b5b60006146b88482850161467f565b91505092915050565b6000819050919050565b60006146e66146e16146dc846146c1565b613838565b61375f565b9050919050565b6146f6816146cb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61473181613721565b82525050565b60006147438383614728565b60208301905092915050565b6000602082019050919050565b6000614767826146fc565b6147718185614707565b935061477c83614718565b8060005b838110156147ad5781516147948882614737565b975061479f8361474f565b925050600181019050614780565b5085935050505092915050565b600060a0820190506147cf60008301886138b2565b6147dc60208301876146ed565b81810360408301526147ee818661475c565b90506147fd606083018561395c565b61480a60808301846138b2565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ff76ca373b7a0a7110d364cf45904fba1d04df7b3b84f95463f3fff1a7ee6b9464736f6c63430008120033000000000000000000000000746ef760c0aa9f720df10c522e4683bc3cf6efc9

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638ea5220f1161015a578063c0246668116100c1578063dd62ed3e1161007a578063dd62ed3e146109f5578063e2f4560514610a32578063f11a24d314610a5d578063f2fde38b14610a88578063f637434214610ab1578063f8b45b0514610adc57610293565b8063c0246668146108e7578063c17b5b8c14610910578063c18bc19514610939578063c8c8ebe414610962578063d257b34f1461098d578063d85ba063146109ca57610293565b8063a0d82dc511610113578063a0d82dc5146107c5578063a457c2d7146107f0578063a9059cbb1461082d578063aacebbe31461086a578063aea6b31014610893578063b62496f5146108aa57610293565b80638ea5220f146106c557806392136913146106f057806395d89b411461071b5780639a7a23d6146107465780639c3b4fdc1461076f5780639fccce321461079a57610293565b8063313ce567116101fe578063715018a6116101b7578063715018a6146105db5780637571336a146105f257806375f0a8741461061b5780637bce5a04146106465780638095d564146106715780638da5cb5b1461069a57610293565b8063313ce567146104a357806339509351146104ce57806349bd5a5e1461050b5780634fbee193146105365780636a486a8e1461057357806370a082311461059e57610293565b80631816467f116102505780631816467f146103935780631a8145bb146103bc5780631f3fed8f146103e7578063203e727e1461041257806323b872dd1461043b57806327c8f8351461047857610293565b806306fdde0314610298578063095ea7b3146102c357806310d5de53146103005780631694505e1461033d57806318160ddd1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610b07565b6040516102ba91906136da565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190613795565b610b99565b6040516102f791906137f0565b60405180910390f35b34801561030c57600080fd5b506103276004803603810190610322919061380b565b610bb7565b60405161033491906137f0565b60405180910390f35b34801561034957600080fd5b50610352610bd7565b60405161035f9190613897565b60405180910390f35b34801561037457600080fd5b5061037d610bfb565b60405161038a91906138c1565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b5919061380b565b610c05565b005b3480156103c857600080fd5b506103d1610d5c565b6040516103de91906138c1565b60405180910390f35b3480156103f357600080fd5b506103fc610d62565b60405161040991906138c1565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906138dc565b610d68565b005b34801561044757600080fd5b50610462600480360381019061045d9190613909565b610e92565b60405161046f91906137f0565b60405180910390f35b34801561048457600080fd5b5061048d610f6b565b60405161049a919061396b565b60405180910390f35b3480156104af57600080fd5b506104b8610f71565b6040516104c591906139a2565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613795565b610f7a565b60405161050291906137f0565b60405180910390f35b34801561051757600080fd5b5061052061102d565b60405161052d919061396b565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061380b565b611051565b60405161056a91906137f0565b60405180910390f35b34801561057f57600080fd5b506105886110a7565b60405161059591906138c1565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c0919061380b565b6110ad565b6040516105d291906138c1565b60405180910390f35b3480156105e757600080fd5b506105f06110f5565b005b3480156105fe57600080fd5b50610619600480360381019061061491906139e9565b61124d565b005b34801561062757600080fd5b5061063061133f565b60405161063d919061396b565b60405180910390f35b34801561065257600080fd5b5061065b611365565b60405161066891906138c1565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613a29565b61136b565b005b3480156106a657600080fd5b506106af611485565b6040516106bc919061396b565b60405180910390f35b3480156106d157600080fd5b506106da6114af565b6040516106e7919061396b565b60405180910390f35b3480156106fc57600080fd5b506107056114d5565b60405161071291906138c1565b60405180910390f35b34801561072757600080fd5b506107306114db565b60405161073d91906136da565b60405180910390f35b34801561075257600080fd5b5061076d600480360381019061076891906139e9565b61156d565b005b34801561077b57600080fd5b506107846116a0565b60405161079191906138c1565b60405180910390f35b3480156107a657600080fd5b506107af6116a6565b6040516107bc91906138c1565b60405180910390f35b3480156107d157600080fd5b506107da6116ac565b6040516107e791906138c1565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613795565b6116b2565b60405161082491906137f0565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613795565b61177f565b60405161086191906137f0565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c919061380b565b61179d565b005b34801561089f57600080fd5b506108a86118f4565b005b3480156108b657600080fd5b506108d160048036038101906108cc919061380b565b611995565b6040516108de91906137f0565b60405180910390f35b3480156108f357600080fd5b5061090e600480360381019061090991906139e9565b6119b5565b005b34801561091c57600080fd5b5061093760048036038101906109329190613a29565b611af5565b005b34801561094557600080fd5b50610960600480360381019061095b91906138dc565b611c0f565b005b34801561096e57600080fd5b50610977611d39565b60405161098491906138c1565b60405180910390f35b34801561099957600080fd5b506109b460048036038101906109af91906138dc565b611d3f565b6040516109c191906137f0565b60405180910390f35b3480156109d657600080fd5b506109df611eaf565b6040516109ec91906138c1565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a179190613a7c565b611eb5565b604051610a2991906138c1565b60405180910390f35b348015610a3e57600080fd5b50610a47611f3c565b604051610a5491906138c1565b60405180910390f35b348015610a6957600080fd5b50610a72611f42565b604051610a7f91906138c1565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa919061380b565b611f48565b005b348015610abd57600080fd5b50610ac661210e565b604051610ad391906138c1565b60405180910390f35b348015610ae857600080fd5b50610af1612114565b604051610afe91906138c1565b60405180910390f35b606060038054610b1690613aeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4290613aeb565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610bad610ba6612178565b8484612180565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c0d612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613b68565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b60135481565b610d70612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690613b68565b60405180910390fd5b670de0b6b3a76400006103e86001610e15610bfb565b610e1f9190613bb7565b610e299190613c28565b610e339190613c28565b811015610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613ccb565b60405180910390fd5b670de0b6b3a764000081610e899190613bb7565b60088190555050565b6000610e9f848484612349565b610f6084610eab612178565b610f5b8560405180606001604052806028815260200161483b60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f11612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf59092919063ffffffff16565b612180565b600190509392505050565b61dead81565b60006012905090565b6000611023610f87612178565b8461101e8560016000610f98612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211a90919063ffffffff16565b612180565b6001905092915050565b7f0000000000000000000000005a94b96e81ed99a0ae2597be4ef39fccd57ef02e81565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fd612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613b68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611255612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613b68565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b611373612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613b68565b60405180910390fd5b82600c8190555081600d8190555080600e81905550600e54600d54600c5461142a9190613ceb565b6114349190613ceb565b600b819055506019600b541115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613d6b565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6060600480546114ea90613aeb565b80601f016020809104026020016040519081016040528092919081815260200182805461151690613aeb565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b5050505050905090565b611575612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613b68565b60405180910390fd5b7f0000000000000000000000005a94b96e81ed99a0ae2597be4ef39fccd57ef02e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613dfd565b60405180910390fd5b61169c8282612d59565b5050565b600e5481565b60155481565b60125481565b60006117756116bf612178565b846117708560405180606001604052806025815260200161486360259139600160006116e9612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf59092919063ffffffff16565b612180565b6001905092915050565b600061179361178c612178565b8484612349565b6001905092915050565b6117a5612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613b68565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118fc612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613b68565b60405180910390fd5b611993612dfa565b565b60186020528060005260406000206000915054906101000a900460ff1681565b6119bd612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4390613b68565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ae991906137f0565b60405180910390a25050565b611afd612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613b68565b60405180910390fd5b826010819055508160118190555080601281905550601254601154601054611bb49190613ceb565b611bbe9190613ceb565b600f819055506063600f541115611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0190613e69565b60405180910390fd5b505050565b611c17612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90613b68565b60405180910390fd5b670de0b6b3a76400006103e86005611cbc610bfb565b611cc69190613bb7565b611cd09190613c28565b611cda9190613c28565b811015611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613efb565b60405180910390fd5b670de0b6b3a764000081611d309190613bb7565b600a8190555050565b60085481565b6000611d49612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613b68565b60405180910390fd5b620186a06001611de6610bfb565b611df09190613bb7565b611dfa9190613c28565b821015611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390613f8d565b60405180910390fd5b6103e8600a611e49610bfb565b611e539190613bb7565b611e5d9190613c28565b821115611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e969061401f565b60405180910390fd5b8160098190555060019050919050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600d5481565b611f50612178565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690613b68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361204e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612045906140b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600a5481565b60008082846121299190613ceb565b90508381101561216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121659061411d565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906141af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590614241565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161233c91906138c1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90614365565b60405180910390fd5b600081036124405761243b83836000613004565b612cf0565b612448611485565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124b65750612486611485565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ef5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612529575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125425750600560149054906101000a900460ff16155b1561283057601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125ea5750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561269157600854811115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b906143f7565b60405180910390fd5b600a54612640836110ad565b8261264b9190613ceb565b111561268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390614463565b60405180910390fd5b61282f565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127345750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127835760085481111561277e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612775906144f5565b60405180910390fd5b61282e565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661282d57600a546127e0836110ad565b826127eb9190613ceb565b111561282c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282390614463565b60405180910390fd5b5b5b5b5b600061283b306110ad565b9050600060095482101590508080156128615750600560149054906101000a900460ff16155b80156128b75750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561290d5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129635750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129a7576001600560146101000a81548160ff02191690831515021790555061298b612dfa565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a5d5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a6757600090505b60008115612ce057601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612aca57506000600f54115b15612b9757612af76064612ae9600f548861329790919063ffffffff16565b61331190919063ffffffff16565b9050600f5460115482612b0a9190613bb7565b612b149190613c28565b60146000828254612b259190613ceb565b92505081905550600f5460125482612b3d9190613bb7565b612b479190613c28565b60156000828254612b589190613ceb565b92505081905550600f5460105482612b709190613bb7565b612b7a9190613c28565b60136000828254612b8b9190613ceb565b92505081905550612cbc565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bf257506000600b54115b15612cbb57612c1f6064612c11600b548861329790919063ffffffff16565b61331190919063ffffffff16565b9050600b54600d5482612c329190613bb7565b612c3c9190613c28565b60146000828254612c4d9190613ceb565b92505081905550600b54600e5482612c659190613bb7565b612c6f9190613c28565b60156000828254612c809190613ceb565b92505081905550600b54600c5482612c989190613bb7565b612ca29190613c28565b60136000828254612cb39190613ceb565b925050819055505b5b6000811115612cd157612cd0873083613004565b5b8085612cdd9190614515565b94505b612ceb878787613004565b505050505b505050565b6000838311158290612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3491906136da565b60405180910390fd5b5060008385612d4c9190614515565b9050809150509392505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000612e05306110ad565b90506000601554601354601454612e1c9190613ceb565b612e269190613ceb565b9050600080831480612e385750600082145b15612e4557505050613002565b60008390506000479050612e588261335b565b6000612e6d824761359890919063ffffffff16565b90506000612e986064612e8a60508561329790919063ffffffff16565b61331190919063ffffffff16565b90506000612ec36064612eb560148661329790919063ffffffff16565b61331190919063ffffffff16565b9050600060148190555060006013819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612f239061457a565b60006040518083038185875af1925050503d8060008114612f60576040519150601f19603f3d011682016040523d82523d6000602084013e612f65565b606091505b505080965050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612fb19061457a565b60006040518083038185875af1925050503d8060008114612fee576040519150601f19603f3d011682016040523d82523d6000602084013e612ff3565b606091505b50508096505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306a906142d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d990614365565b60405180910390fd5b6130ed8383836135e2565b61315881604051806060016040528060268152602001614815602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cf59092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131eb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161328a91906138c1565b60405180910390a3505050565b60008083036132a9576000905061330b565b600082846132b79190613bb7565b90508284826132c69190613c28565b14613306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fd90614601565b60405180910390fd5b809150505b92915050565b600061335383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135e7565b905092915050565b6000600267ffffffffffffffff81111561337857613377614621565b5b6040519080825280602002602001820160405280156133a65781602001602082028036833780820191505090505b50905030816000815181106133be576133bd614650565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613463573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134879190614694565b8160018151811061349b5761349a614650565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613500307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612180565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016135629594939291906147ba565b600060405180830381600087803b15801561357c57600080fd5b505af1158015613590573d6000803e3d6000fd5b505050505050565b60006135da83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612cf5565b905092915050565b505050565b6000808311829061362e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362591906136da565b60405180910390fd5b506000838561363d9190613c28565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613684578082015181840152602081019050613669565b60008484015250505050565b6000601f19601f8301169050919050565b60006136ac8261364a565b6136b68185613655565b93506136c6818560208601613666565b6136cf81613690565b840191505092915050565b600060208201905081810360008301526136f481846136a1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061372c82613701565b9050919050565b61373c81613721565b811461374757600080fd5b50565b60008135905061375981613733565b92915050565b6000819050919050565b6137728161375f565b811461377d57600080fd5b50565b60008135905061378f81613769565b92915050565b600080604083850312156137ac576137ab6136fc565b5b60006137ba8582860161374a565b92505060206137cb85828601613780565b9150509250929050565b60008115159050919050565b6137ea816137d5565b82525050565b600060208201905061380560008301846137e1565b92915050565b600060208284031215613821576138206136fc565b5b600061382f8482850161374a565b91505092915050565b6000819050919050565b600061385d61385861385384613701565b613838565b613701565b9050919050565b600061386f82613842565b9050919050565b600061388182613864565b9050919050565b61389181613876565b82525050565b60006020820190506138ac6000830184613888565b92915050565b6138bb8161375f565b82525050565b60006020820190506138d660008301846138b2565b92915050565b6000602082840312156138f2576138f16136fc565b5b600061390084828501613780565b91505092915050565b600080600060608486031215613922576139216136fc565b5b60006139308682870161374a565b93505060206139418682870161374a565b925050604061395286828701613780565b9150509250925092565b61396581613721565b82525050565b6000602082019050613980600083018461395c565b92915050565b600060ff82169050919050565b61399c81613986565b82525050565b60006020820190506139b76000830184613993565b92915050565b6139c6816137d5565b81146139d157600080fd5b50565b6000813590506139e3816139bd565b92915050565b60008060408385031215613a00576139ff6136fc565b5b6000613a0e8582860161374a565b9250506020613a1f858286016139d4565b9150509250929050565b600080600060608486031215613a4257613a416136fc565b5b6000613a5086828701613780565b9350506020613a6186828701613780565b9250506040613a7286828701613780565b9150509250925092565b60008060408385031215613a9357613a926136fc565b5b6000613aa18582860161374a565b9250506020613ab28582860161374a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b0357607f821691505b602082108103613b1657613b15613abc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b52602083613655565b9150613b5d82613b1c565b602082019050919050565b60006020820190508181036000830152613b8181613b45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bc28261375f565b9150613bcd8361375f565b9250828202613bdb8161375f565b91508282048414831517613bf257613bf1613b88565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c338261375f565b9150613c3e8361375f565b925082613c4e57613c4d613bf9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613cb5602f83613655565b9150613cc082613c59565b604082019050919050565b60006020820190508181036000830152613ce481613ca8565b9050919050565b6000613cf68261375f565b9150613d018361375f565b9250828201905080821115613d1957613d18613b88565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d55601d83613655565b9150613d6082613d1f565b602082019050919050565b60006020820190508181036000830152613d8481613d48565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613de7603983613655565b9150613df282613d8b565b604082019050919050565b60006020820190508181036000830152613e1681613dda565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b6000613e53601d83613655565b9150613e5e82613e1d565b602082019050919050565b60006020820190508181036000830152613e8281613e46565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613ee5602483613655565b9150613ef082613e89565b604082019050919050565b60006020820190508181036000830152613f1481613ed8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613f77603583613655565b9150613f8282613f1b565b604082019050919050565b60006020820190508181036000830152613fa681613f6a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614009603283613655565b915061401482613fad565b604082019050919050565b6000602082019050818103600083015261403881613ffc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061409b602683613655565b91506140a68261403f565b604082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614107601b83613655565b9150614112826140d1565b602082019050919050565b60006020820190508181036000830152614136816140fa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614199602483613655565b91506141a48261413d565b604082019050919050565b600060208201905081810360008301526141c88161418c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422b602283613655565b9150614236826141cf565b604082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142bd602583613655565b91506142c882614261565b604082019050919050565b600060208201905081810360008301526142ec816142b0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061434f602383613655565b915061435a826142f3565b604082019050919050565b6000602082019050818103600083015261437e81614342565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143e1603583613655565b91506143ec82614385565b604082019050919050565b60006020820190508181036000830152614410816143d4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061444d601383613655565b915061445882614417565b602082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144df603683613655565b91506144ea82614483565b604082019050919050565b6000602082019050818103600083015261450e816144d2565b9050919050565b60006145208261375f565b915061452b8361375f565b925082820390508181111561454357614542613b88565b5b92915050565b600081905092915050565b50565b6000614564600083614549565b915061456f82614554565b600082019050919050565b600061458582614557565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145eb602183613655565b91506145f68261458f565b604082019050919050565b6000602082019050818103600083015261461a816145de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061468e81613733565b92915050565b6000602082840312156146aa576146a96136fc565b5b60006146b88482850161467f565b91505092915050565b6000819050919050565b60006146e66146e16146dc846146c1565b613838565b61375f565b9050919050565b6146f6816146cb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61473181613721565b82525050565b60006147438383614728565b60208301905092915050565b6000602082019050919050565b6000614767826146fc565b6147718185614707565b935061477c83614718565b8060005b838110156147ad5781516147948882614737565b975061479f8361474f565b925050600181019050614780565b5085935050505092915050565b600060a0820190506147cf60008301886138b2565b6147dc60208301876146ed565b81810360408301526147ee818661475c565b90506147fd606083018561395c565b61480a60808301846138b2565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ff76ca373b7a0a7110d364cf45904fba1d04df7b3b84f95463f3fff1a7ee6b9464736f6c63430008120033

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

000000000000000000000000746ef760c0aa9f720df10c522e4683bc3cf6efc9

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x746ef760C0aa9F720df10c522e4683bC3cf6efC9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000746ef760c0aa9f720df10c522e4683bc3cf6efc9


Deployed Bytecode Sourcemap

32486:11599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9102:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11410:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33401:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32564:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10222:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39091:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33266:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33226;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36605:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12102:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32667:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10064:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12965:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32622:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39256:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33081:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10393:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24257:148;;;;;;;;;;;;;:::i;:::-;;37152:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32757:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32976;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37327:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23615:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32794:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33116:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9321:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38348:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33050:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33306:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33192:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13768:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10783:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38852:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44008:74;;;;;;;;;;;;;:::i;:::-;;33471:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38158:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37738:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36888:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32827:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36101:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32942:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11062:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32869:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33013:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24560:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33154:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32909:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9102:100;9156:13;9189:5;9182:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9102:100;:::o;11410:210::-;11529:4;11551:39;11560:12;:10;:12::i;:::-;11574:7;11583:6;11551:8;:39::i;:::-;11608:4;11601:11;;11410:210;;;;:::o;33401:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32564:51::-;;;:::o;10222:108::-;10283:7;10310:12;;10303:19;;10222:108;:::o;39091:157::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39198:9:::1;;;;;;;;;;;39170:38;;39187:9;39170:38;;;;;;;;;;;;39231:9;39219;;:21;;;;;;;;;;;;;;;;;;39091:157:::0;:::o;33266:33::-;;;;:::o;33226:::-;;;;:::o;36605:275::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36742:4:::1;36734;36729:1;36713:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36712:26;;;;:::i;:::-;36711:35;;;;:::i;:::-;36701:6;:45;;36679:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36865:6;36855;:17;;;;:::i;:::-;36832:20;:40;;;;36605:275:::0;:::o;12102:454::-;12242:4;12259:36;12269:6;12277:9;12288:6;12259:9;:36::i;:::-;12306:220;12329:6;12350:12;:10;:12::i;:::-;12377:138;12433:6;12377:138;;;;;;;;;;;;;;;;;:11;:19;12389:6;12377:19;;;;;;;;;;;;;;;:33;12397:12;:10;:12::i;:::-;12377:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;12306:8;:220::i;:::-;12544:4;12537:11;;12102:454;;;;;:::o;32667:53::-;32713:6;32667:53;:::o;10064:93::-;10122:5;10147:2;10140:9;;10064:93;:::o;12965:300::-;13080:4;13102:133;13125:12;:10;:12::i;:::-;13152:7;13174:50;13213:10;13174:11;:25;13186:12;:10;:12::i;:::-;13174:25;;;;;;;;;;;;;;;:34;13200:7;13174:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13102:8;:133::i;:::-;13253:4;13246:11;;12965:300;;;;:::o;32622:38::-;;;:::o;39256:126::-;39322:4;39346:19;:28;39366:7;39346:28;;;;;;;;;;;;;;;;;;;;;;;;;39339:35;;39256:126;;;:::o;33081:28::-;;;;:::o;10393:177::-;10512:7;10544:9;:18;10554:7;10544:18;;;;;;;;;;;;;;;;10537:25;;10393:177;;;:::o;24257:148::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24364:1:::1;24327:40;;24348:6;;;;;;;;;;;24327:40;;;;;;;;;;;;24395:1;24378:6;;:19;;;;;;;;;;;;;;;;;;24257:148::o:0;37152:167::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37307:4:::1;37265:31;:39;37297:6;37265:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37152:167:::0;;:::o;32757:30::-;;;;;;;;;;;;;:::o;32976:::-;;;;:::o;37327:403::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37495:13:::1;37477:15;:31;;;;37537:13;37519:15;:31;;;;37573:7;37561:9;:19;;;;37642:9;;37624:15;;37606;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;37591:12;:60;;;;37686:2;37670:12;;:18;;37662:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37327:403:::0;;;:::o;23615:79::-;23653:7;23680:6;;;;;;;;;;;23673:13;;23615:79;:::o;32794:24::-;;;;;;;;;;;;;:::o;33116:31::-;;;;:::o;9321:104::-;9377:13;9410:7;9403:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9321:104;:::o;38348:302::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38492:13:::1;38484:21;;:4;:21;;::::0;38462:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38601:41;38630:4;38636:5;38601:28;:41::i;:::-;38348:302:::0;;:::o;33050:24::-;;;;:::o;33306:27::-;;;;:::o;33192:25::-;;;;:::o;13768:400::-;13888:4;13910:228;13933:12;:10;:12::i;:::-;13960:7;13982:145;14039:15;13982:145;;;;;;;;;;;;;;;;;:11;:25;13994:12;:10;:12::i;:::-;13982:25;;;;;;;;;;;;;;;:34;14008:7;13982:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;13910:8;:228::i;:::-;14156:4;14149:11;;13768:400;;;;:::o;10783:216::-;10905:4;10927:42;10937:12;:10;:12::i;:::-;10951:9;10962:6;10927:9;:42::i;:::-;10987:4;10980:11;;10783:216;;;;:::o;38852:231::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39012:15:::1;;;;;;;;;;;38969:59;;38992:18;38969:59;;;;;;;;;;;;39057:18;39039:15;;:36;;;;;;;;;;;;;;;;;;38852:231:::0;:::o;44008:74::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44064:10:::1;:8;:10::i;:::-;44008:74::o:0;33471:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38158:182::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38274:8:::1;38243:19;:28;38263:7;38243:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38314:7;38298:34;;;38323:8;38298:34;;;;;;:::i;:::-;;;;;;;;38158:182:::0;;:::o;37738:412::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37908:13:::1;37889:16;:32;;;;37951:13;37932:16;:32;;;;37988:7;37975:10;:20;;;;38060:10;;38041:16;;38022;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;38006:13;:64;;;;38106:2;38089:13;;:19;;38081:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37738:412:::0;;;:::o;36888:256::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37028:4:::1;37020;37015:1;36999:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36998:26;;;;:::i;:::-;36997:35;;;;:::i;:::-;36987:6;:45;;36965:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;37129:6;37119;:17;;;;:::i;:::-;37107:9;:29;;;;36888:256:::0;:::o;32827:35::-;;;;:::o;36101:496::-;36209:4;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36288:6:::1;36283:1;36267:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36266:28;;;;:::i;:::-;36253:9;:41;;36231:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36444:4;36438:2;36422:13;:11;:13::i;:::-;:18;;;;:::i;:::-;36421:27;;;;:::i;:::-;36408:9;:40;;36386:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36558:9;36537:18;:30;;;;36585:4;36578:11;;36101:496:::0;;;:::o;32942:27::-;;;;:::o;11062:201::-;11196:7;11228:11;:18;11240:5;11228:18;;;;;;;;;;;;;;;:27;11247:7;11228:27;;;;;;;;;;;;;;;;11221:34;;11062:201;;;;:::o;32869:33::-;;;;:::o;33013:30::-;;;;:::o;24560:281::-;23837:12;:10;:12::i;:::-;23827:22;;:6;;;;;;;;;;;:22;;;23819:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24683:1:::1;24663:22;;:8;:22;;::::0;24641:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24796:8;24767:38;;24788:6;;;;;;;;;;;24767:38;;;;;;;;;;;;24825:8;24816:6;;:17;;;;;;;;;;;;;;;;;;24560:281:::0;:::o;33154:31::-;;;;:::o;32909:24::-;;;;:::o;18537:181::-;18595:7;18615:9;18631:1;18627;:5;;;;:::i;:::-;18615:17;;18656:1;18651;:6;;18643:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;18709:1;18702:8;;;18537:181;;;;:::o;1085:98::-;1138:7;1165:10;1158:17;;1085:98;:::o;17159:380::-;17312:1;17295:19;;:5;:19;;;17287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17393:1;17374:21;;:7;:21;;;17366:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17477:6;17447:11;:18;17459:5;17447:18;;;;;;;;;;;;;;;:27;17466:7;17447:27;;;;;;;;;;;;;;;:36;;;;17515:7;17499:32;;17508:5;17499:32;;;17524:6;17499:32;;;;;;:::i;:::-;;;;;;;;17159:380;;;:::o;39390:3164::-;39538:1;39522:18;;:4;:18;;;39514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39615:1;39601:16;;:2;:16;;;39593:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39682:1;39672:6;:11;39668:93;;39700:28;39716:4;39722:2;39726:1;39700:15;:28::i;:::-;39743:7;;39668:93;39799:7;:5;:7::i;:::-;39791:15;;:4;:15;;;;:45;;;;;39829:7;:5;:7::i;:::-;39823:13;;:2;:13;;;;39791:45;:78;;;;;39867:1;39853:16;;:2;:16;;;;39791:78;:116;;;;;39900:6;39886:21;;:2;:21;;;;39791:116;:142;;;;;39925:8;;;;;;;;;;;39924:9;39791:142;39773:1199;;;39982:25;:31;40008:4;39982:31;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;40035:31;:35;40067:2;40035:35;;;;;;;;;;;;;;;;;;;;;;;;;40034:36;39982:88;39960:1001;;;40145:20;;40135:6;:30;;40105:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;40337:9;;40320:13;40330:2;40320:9;:13::i;:::-;40311:6;:22;;;;:::i;:::-;:35;;40281:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;39960:1001;;;40453:25;:29;40479:2;40453:29;;;;;;;;;;;;;;;;;;;;;;;;;:88;;;;;40504:31;:37;40536:4;40504:37;;;;;;;;;;;;;;;;;;;;;;;;;40503:38;40453:88;40431:530;;;40616:20;;40606:6;:30;;40576:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;40431:530;;;40761:31;:35;40793:2;40761:35;;;;;;;;;;;;;;;;;;;;;;;;;40756:205;;40873:9;;40856:13;40866:2;40856:9;:13::i;:::-;40847:6;:22;;;;:::i;:::-;:35;;40817:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40756:205;40431:530;39960:1001;39773:1199;40984:28;41015:24;41033:4;41015:9;:24::i;:::-;40984:55;;41050:12;41089:18;;41065:20;:42;;41050:57;;41136:7;:33;;;;;41161:8;;;;;;;;;;;41160:9;41136:33;:82;;;;;41187:25;:31;41213:4;41187:31;;;;;;;;;;;;;;;;;;;;;;;;;41186:32;41136:82;:125;;;;;41236:19;:25;41256:4;41236:25;;;;;;;;;;;;;;;;;;;;;;;;;41235:26;41136:125;:166;;;;;41279:19;:23;41299:2;41279:23;;;;;;;;;;;;;;;;;;;;;;;;;41278:24;41136:166;41118:294;;;41340:4;41329:8;;:15;;;;;;;;;;;;;;;;;;41359:10;:8;:10::i;:::-;41395:5;41384:8;;:16;;;;;;;;;;;;;;;;;;41118:294;41424:12;41440:8;;;;;;;;;;;41439:9;41424:24;;41463:19;:25;41483:4;41463:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41492:19;:23;41512:2;41492:23;;;;;;;;;;;;;;;;;;;;;;;;;41463:52;41459:100;;;41542:5;41532:15;;41459:100;41571:12;41602:7;41598:905;;;41630:25;:29;41656:2;41630:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41679:1;41663:13;;:17;41630:50;41626:732;;;41708:34;41738:3;41708:25;41719:13;;41708:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41701:41;;41811:13;;41791:16;;41784:4;:23;;;;:::i;:::-;41783:41;;;;:::i;:::-;41761:18;;:63;;;;;;;:::i;:::-;;;;;;;;41881:13;;41867:10;;41860:4;:17;;;;:::i;:::-;41859:35;;;;:::i;:::-;41843:12;;:51;;;;;;;:::i;:::-;;;;;;;;41963:13;;41943:16;;41936:4;:23;;;;:::i;:::-;41935:41;;;;:::i;:::-;41913:18;;:63;;;;;;;:::i;:::-;;;;;;;;41626:732;;;42002:25;:31;42028:4;42002:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42052:1;42037:12;;:16;42002:51;41998:360;;;42081:33;42110:3;42081:24;42092:12;;42081:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42074:40;;42182:12;;42163:15;;42156:4;:22;;;;:::i;:::-;42155:39;;;;:::i;:::-;42133:18;;:61;;;;;;;:::i;:::-;;;;;;;;42250:12;;42237:9;;42230:4;:16;;;;:::i;:::-;42229:33;;;;:::i;:::-;42213:12;;:49;;;;;;;:::i;:::-;;;;;;;;42330:12;;42311:15;;42304:4;:22;;;;:::i;:::-;42303:39;;;;:::i;:::-;42281:18;;:61;;;;;;;:::i;:::-;;;;;;;;41998:360;41626:732;42383:1;42376:4;:8;42372:91;;;42405:42;42421:4;42435;42442;42405:15;:42::i;:::-;42372:91;42487:4;42477:14;;;;;:::i;:::-;;;41598:905;42513:33;42529:4;42535:2;42539:6;42513:15;:33::i;:::-;39503:3051;;;;39390:3164;;;;:::o;19440:226::-;19560:7;19593:1;19588;:6;;19596:12;19580:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19620:9;19636:1;19632;:5;;;;:::i;:::-;19620:17;;19657:1;19650:8;;;19440:226;;;;;:::o;38658:186::-;38775:5;38741:25;:31;38767:4;38741:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38830:5;38796:40;;38824:4;38796:40;;;;;;;;;;;;38658:186;;:::o;43045:955::-;43084:23;43110:24;43128:4;43110:9;:24::i;:::-;43084:50;;43145:25;43241:12;;43207:18;;43173;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;43145:108;;43264:12;43312:1;43293:15;:20;:46;;;;43338:1;43317:17;:22;43293:46;43289:85;;;43356:7;;;;;43289:85;43386:26;43415:15;43386:44;;43441:25;43469:21;43441:49;;43501:36;43518:18;43501:16;:36::i;:::-;43548:18;43569:44;43595:17;43569:21;:25;;:44;;;;:::i;:::-;43548:65;;43626:23;43652:27;43675:3;43652:18;43667:2;43652:10;:14;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;43626:53;;43690:19;43712:27;43735:3;43712:18;43727:2;43712:10;:14;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;43690:49;;43773:1;43752:18;:22;;;;43806:1;43785:18;:22;;;;43833:1;43818:12;:16;;;;43869:9;;;;;;;;;;;43861:23;;43892:11;43861:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43847:61;;;;;43943:15;;;;;;;;;;;43935:29;;43972:15;43935:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43921:71;;;;;43073:927;;;;;;;;43045:955;:::o;14658:610::-;14816:1;14798:20;;:6;:20;;;14790:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14900:1;14879:23;;:9;:23;;;14871:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14955:47;14976:6;14984:9;14995:6;14955:20;:47::i;:::-;15035:108;15071:6;15035:108;;;;;;;;;;;;;;;;;:9;:17;15045:6;15035:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;15015:9;:17;15025:6;15015:17;;;;;;;;;;;;;;;:128;;;;15177:32;15202:6;15177:9;:20;15187:9;15177:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15154:9;:20;15164:9;15154:20;;;;;;;;;;;;;;;:55;;;;15242:9;15225:35;;15234:6;15225:35;;;15253:6;15225:35;;;;;;:::i;:::-;;;;;;;;14658:610;;;:::o;19925:471::-;19983:7;20233:1;20228;:6;20224:47;;20258:1;20251:8;;;;20224:47;20283:9;20299:1;20295;:5;;;;:::i;:::-;20283:17;;20328:1;20323;20319;:5;;;;:::i;:::-;:10;20311:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;20387:1;20380:8;;;19925:471;;;;;:::o;20872:132::-;20930:7;20957:39;20961:1;20964;20957:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;20950:46;;20872:132;;;;:::o;42562:475::-;42628:21;42666:1;42652:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42628:40;;42697:4;42679;42684:1;42679:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42723:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42713:4;42718:1;42713:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42758:62;42775:4;42790:15;42808:11;42758:8;:62::i;:::-;42833:15;:66;;;42914:11;42940:1;42956:4;42983;43003:15;42833:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42617:420;42562:475;:::o;19001:136::-;19059:7;19086:43;19090:1;19093;19086:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;19079:50;;19001:136;;;;:::o;18142:125::-;;;;:::o;21500:312::-;21620:7;21652:1;21648;:5;21655:12;21640:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;21679:9;21695:1;21691;:5;;;;:::i;:::-;21679:17;;21803:1;21796:8;;;21500:312;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:474::-;8281:6;8289;8338:2;8326:9;8317:7;8313:23;8309:32;8306:119;;;8344:79;;:::i;:::-;8306:119;8464:1;8489:53;8534:7;8525:6;8514:9;8510:22;8489:53;:::i;:::-;8479:63;;8435:117;8591:2;8617:53;8662:7;8653:6;8642:9;8638:22;8617:53;:::i;:::-;8607:63;;8562:118;8213:474;;;;;:::o;8693:180::-;8741:77;8738:1;8731:88;8838:4;8835:1;8828:15;8862:4;8859:1;8852:15;8879:320;8923:6;8960:1;8954:4;8950:12;8940:22;;9007:1;9001:4;8997:12;9028:18;9018:81;;9084:4;9076:6;9072:17;9062:27;;9018:81;9146:2;9138:6;9135:14;9115:18;9112:38;9109:84;;9165:18;;:::i;:::-;9109:84;8930:269;8879:320;;;:::o;9205:182::-;9345:34;9341:1;9333:6;9329:14;9322:58;9205:182;:::o;9393:366::-;9535:3;9556:67;9620:2;9615:3;9556:67;:::i;:::-;9549:74;;9632:93;9721:3;9632:93;:::i;:::-;9750:2;9745:3;9741:12;9734:19;;9393:366;;;:::o;9765:419::-;9931:4;9969:2;9958:9;9954:18;9946:26;;10018:9;10012:4;10008:20;10004:1;9993:9;9989:17;9982:47;10046:131;10172:4;10046:131;:::i;:::-;10038:139;;9765:419;;;:::o;10190:180::-;10238:77;10235:1;10228:88;10335:4;10332:1;10325:15;10359:4;10356:1;10349:15;10376:410;10416:7;10439:20;10457:1;10439:20;:::i;:::-;10434:25;;10473:20;10491:1;10473:20;:::i;:::-;10468:25;;10528:1;10525;10521:9;10550:30;10568:11;10550:30;:::i;:::-;10539:41;;10729:1;10720:7;10716:15;10713:1;10710:22;10690:1;10683:9;10663:83;10640:139;;10759:18;;:::i;:::-;10640:139;10424:362;10376:410;;;;:::o;10792:180::-;10840:77;10837:1;10830:88;10937:4;10934:1;10927:15;10961:4;10958:1;10951:15;10978:185;11018:1;11035:20;11053:1;11035:20;:::i;:::-;11030:25;;11069:20;11087:1;11069:20;:::i;:::-;11064:25;;11108:1;11098:35;;11113:18;;:::i;:::-;11098:35;11155:1;11152;11148:9;11143:14;;10978:185;;;;:::o;11169:234::-;11309:34;11305:1;11297:6;11293:14;11286:58;11378:17;11373:2;11365:6;11361:15;11354:42;11169:234;:::o;11409:366::-;11551:3;11572:67;11636:2;11631:3;11572:67;:::i;:::-;11565:74;;11648:93;11737:3;11648:93;:::i;:::-;11766:2;11761:3;11757:12;11750:19;;11409:366;;;:::o;11781:419::-;11947:4;11985:2;11974:9;11970:18;11962:26;;12034:9;12028:4;12024:20;12020:1;12009:9;12005:17;11998:47;12062:131;12188:4;12062:131;:::i;:::-;12054:139;;11781:419;;;:::o;12206:191::-;12246:3;12265:20;12283:1;12265:20;:::i;:::-;12260:25;;12299:20;12317:1;12299:20;:::i;:::-;12294:25;;12342:1;12339;12335:9;12328:16;;12363:3;12360:1;12357:10;12354:36;;;12370:18;;:::i;:::-;12354:36;12206:191;;;;:::o;12403:179::-;12543:31;12539:1;12531:6;12527:14;12520:55;12403:179;:::o;12588:366::-;12730:3;12751:67;12815:2;12810:3;12751:67;:::i;:::-;12744:74;;12827:93;12916:3;12827:93;:::i;:::-;12945:2;12940:3;12936:12;12929:19;;12588:366;;;:::o;12960:419::-;13126:4;13164:2;13153:9;13149:18;13141:26;;13213:9;13207:4;13203:20;13199:1;13188:9;13184:17;13177:47;13241:131;13367:4;13241:131;:::i;:::-;13233:139;;12960:419;;;:::o;13385:244::-;13525:34;13521:1;13513:6;13509:14;13502:58;13594:27;13589:2;13581:6;13577:15;13570:52;13385:244;:::o;13635:366::-;13777:3;13798:67;13862:2;13857:3;13798:67;:::i;:::-;13791:74;;13874:93;13963:3;13874:93;:::i;:::-;13992:2;13987:3;13983:12;13976:19;;13635:366;;;:::o;14007:419::-;14173:4;14211:2;14200:9;14196:18;14188:26;;14260:9;14254:4;14250:20;14246:1;14235:9;14231:17;14224:47;14288:131;14414:4;14288:131;:::i;:::-;14280:139;;14007:419;;;:::o;14432:179::-;14572:31;14568:1;14560:6;14556:14;14549:55;14432:179;:::o;14617:366::-;14759:3;14780:67;14844:2;14839:3;14780:67;:::i;:::-;14773:74;;14856:93;14945:3;14856:93;:::i;:::-;14974:2;14969:3;14965:12;14958:19;;14617:366;;;:::o;14989:419::-;15155:4;15193:2;15182:9;15178:18;15170:26;;15242:9;15236:4;15232:20;15228:1;15217:9;15213:17;15206:47;15270:131;15396:4;15270:131;:::i;:::-;15262:139;;14989:419;;;:::o;15414:223::-;15554:34;15550:1;15542:6;15538:14;15531:58;15623:6;15618:2;15610:6;15606:15;15599:31;15414:223;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:240::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:23;16644:2;16636:6;16632:15;16625:48;16440:240;:::o;16686:366::-;16828:3;16849:67;16913:2;16908:3;16849:67;:::i;:::-;16842:74;;16925:93;17014:3;16925:93;:::i;:::-;17043:2;17038:3;17034:12;17027:19;;16686:366;;;:::o;17058:419::-;17224:4;17262:2;17251:9;17247:18;17239:26;;17311:9;17305:4;17301:20;17297:1;17286:9;17282:17;17275:47;17339:131;17465:4;17339:131;:::i;:::-;17331:139;;17058:419;;;:::o;17483:237::-;17623:34;17619:1;17611:6;17607:14;17600:58;17692:20;17687:2;17679:6;17675:15;17668:45;17483:237;:::o;17726:366::-;17868:3;17889:67;17953:2;17948:3;17889:67;:::i;:::-;17882:74;;17965:93;18054:3;17965:93;:::i;:::-;18083:2;18078:3;18074:12;18067:19;;17726:366;;;:::o;18098:419::-;18264:4;18302:2;18291:9;18287:18;18279:26;;18351:9;18345:4;18341:20;18337:1;18326:9;18322:17;18315:47;18379:131;18505:4;18379:131;:::i;:::-;18371:139;;18098:419;;;:::o;18523:225::-;18663:34;18659:1;18651:6;18647:14;18640:58;18732:8;18727:2;18719:6;18715:15;18708:33;18523:225;:::o;18754:366::-;18896:3;18917:67;18981:2;18976:3;18917:67;:::i;:::-;18910:74;;18993:93;19082:3;18993:93;:::i;:::-;19111:2;19106:3;19102:12;19095:19;;18754:366;;;:::o;19126:419::-;19292:4;19330:2;19319:9;19315:18;19307:26;;19379:9;19373:4;19369:20;19365:1;19354:9;19350:17;19343:47;19407:131;19533:4;19407:131;:::i;:::-;19399:139;;19126:419;;;:::o;19551:177::-;19691:29;19687:1;19679:6;19675:14;19668:53;19551:177;:::o;19734:366::-;19876:3;19897:67;19961:2;19956:3;19897:67;:::i;:::-;19890:74;;19973:93;20062:3;19973:93;:::i;:::-;20091:2;20086:3;20082:12;20075:19;;19734:366;;;:::o;20106:419::-;20272:4;20310:2;20299:9;20295:18;20287:26;;20359:9;20353:4;20349:20;20345:1;20334:9;20330:17;20323:47;20387:131;20513:4;20387:131;:::i;:::-;20379:139;;20106:419;;;:::o;20531:223::-;20671:34;20667:1;20659:6;20655:14;20648:58;20740:6;20735:2;20727:6;20723:15;20716:31;20531:223;:::o;20760:366::-;20902:3;20923:67;20987:2;20982:3;20923:67;:::i;:::-;20916:74;;20999:93;21088:3;20999:93;:::i;:::-;21117:2;21112:3;21108:12;21101:19;;20760:366;;;:::o;21132:419::-;21298:4;21336:2;21325:9;21321:18;21313:26;;21385:9;21379:4;21375:20;21371:1;21360:9;21356:17;21349:47;21413:131;21539:4;21413:131;:::i;:::-;21405:139;;21132:419;;;:::o;21557:221::-;21697:34;21693:1;21685:6;21681:14;21674:58;21766:4;21761:2;21753:6;21749:15;21742:29;21557:221;:::o;21784:366::-;21926:3;21947:67;22011:2;22006:3;21947:67;:::i;:::-;21940:74;;22023:93;22112:3;22023:93;:::i;:::-;22141:2;22136:3;22132:12;22125:19;;21784:366;;;:::o;22156:419::-;22322:4;22360:2;22349:9;22345:18;22337:26;;22409:9;22403:4;22399:20;22395:1;22384:9;22380:17;22373:47;22437:131;22563:4;22437:131;:::i;:::-;22429:139;;22156:419;;;:::o;22581:224::-;22721:34;22717:1;22709:6;22705:14;22698:58;22790:7;22785:2;22777:6;22773:15;22766:32;22581:224;:::o;22811:366::-;22953:3;22974:67;23038:2;23033:3;22974:67;:::i;:::-;22967:74;;23050:93;23139:3;23050:93;:::i;:::-;23168:2;23163:3;23159:12;23152:19;;22811:366;;;:::o;23183:419::-;23349:4;23387:2;23376:9;23372:18;23364:26;;23436:9;23430:4;23426:20;23422:1;23411:9;23407:17;23400:47;23464:131;23590:4;23464:131;:::i;:::-;23456:139;;23183:419;;;:::o;23608:222::-;23748:34;23744:1;23736:6;23732:14;23725:58;23817:5;23812:2;23804:6;23800:15;23793:30;23608:222;:::o;23836:366::-;23978:3;23999:67;24063:2;24058:3;23999:67;:::i;:::-;23992:74;;24075:93;24164:3;24075:93;:::i;:::-;24193:2;24188:3;24184:12;24177:19;;23836:366;;;:::o;24208:419::-;24374:4;24412:2;24401:9;24397:18;24389:26;;24461:9;24455:4;24451:20;24447:1;24436:9;24432:17;24425:47;24489:131;24615:4;24489:131;:::i;:::-;24481:139;;24208:419;;;:::o;24633:240::-;24773:34;24769:1;24761:6;24757:14;24750:58;24842:23;24837:2;24829:6;24825:15;24818:48;24633:240;:::o;24879:366::-;25021:3;25042:67;25106:2;25101:3;25042:67;:::i;:::-;25035:74;;25118:93;25207:3;25118:93;:::i;:::-;25236:2;25231:3;25227:12;25220:19;;24879:366;;;:::o;25251:419::-;25417:4;25455:2;25444:9;25440:18;25432:26;;25504:9;25498:4;25494:20;25490:1;25479:9;25475:17;25468:47;25532:131;25658:4;25532:131;:::i;:::-;25524:139;;25251:419;;;:::o;25676:169::-;25816:21;25812:1;25804:6;25800:14;25793:45;25676:169;:::o;25851:366::-;25993:3;26014:67;26078:2;26073:3;26014:67;:::i;:::-;26007:74;;26090:93;26179:3;26090:93;:::i;:::-;26208:2;26203:3;26199:12;26192:19;;25851:366;;;:::o;26223:419::-;26389:4;26427:2;26416:9;26412:18;26404:26;;26476:9;26470:4;26466:20;26462:1;26451:9;26447:17;26440:47;26504:131;26630:4;26504:131;:::i;:::-;26496:139;;26223:419;;;:::o;26648:241::-;26788:34;26784:1;26776:6;26772:14;26765:58;26857:24;26852:2;26844:6;26840:15;26833:49;26648:241;:::o;26895:366::-;27037:3;27058:67;27122:2;27117:3;27058:67;:::i;:::-;27051:74;;27134:93;27223:3;27134:93;:::i;:::-;27252:2;27247:3;27243:12;27236:19;;26895:366;;;:::o;27267:419::-;27433:4;27471:2;27460:9;27456:18;27448:26;;27520:9;27514:4;27510:20;27506:1;27495:9;27491:17;27484:47;27548:131;27674:4;27548:131;:::i;:::-;27540:139;;27267:419;;;:::o;27692:194::-;27732:4;27752:20;27770:1;27752:20;:::i;:::-;27747:25;;27786:20;27804:1;27786:20;:::i;:::-;27781:25;;27830:1;27827;27823:9;27815:17;;27854:1;27848:4;27845:11;27842:37;;;27859:18;;:::i;:::-;27842:37;27692:194;;;;:::o;27892:147::-;27993:11;28030:3;28015:18;;27892:147;;;;:::o;28045:114::-;;:::o;28165:398::-;28324:3;28345:83;28426:1;28421:3;28345:83;:::i;:::-;28338:90;;28437:93;28526:3;28437:93;:::i;:::-;28555:1;28550:3;28546:11;28539:18;;28165:398;;;:::o;28569:379::-;28753:3;28775:147;28918:3;28775:147;:::i;:::-;28768:154;;28939:3;28932:10;;28569:379;;;:::o;28954:220::-;29094:34;29090:1;29082:6;29078:14;29071:58;29163:3;29158:2;29150:6;29146:15;29139:28;28954:220;:::o;29180:366::-;29322:3;29343:67;29407:2;29402:3;29343:67;:::i;:::-;29336:74;;29419:93;29508:3;29419:93;:::i;:::-;29537:2;29532:3;29528:12;29521:19;;29180:366;;;:::o;29552:419::-;29718:4;29756:2;29745:9;29741:18;29733:26;;29805:9;29799:4;29795:20;29791:1;29780:9;29776:17;29769:47;29833:131;29959:4;29833:131;:::i;:::-;29825:139;;29552:419;;;:::o;29977:180::-;30025:77;30022:1;30015:88;30122:4;30119:1;30112:15;30146:4;30143:1;30136:15;30163:180;30211:77;30208:1;30201:88;30308:4;30305:1;30298:15;30332:4;30329:1;30322:15;30349:143;30406:5;30437:6;30431:13;30422:22;;30453:33;30480:5;30453:33;:::i;:::-;30349:143;;;;:::o;30498:351::-;30568:6;30617:2;30605:9;30596:7;30592:23;30588:32;30585:119;;;30623:79;;:::i;:::-;30585:119;30743:1;30768:64;30824:7;30815:6;30804:9;30800:22;30768:64;:::i;:::-;30758:74;;30714:128;30498:351;;;;:::o;30855:85::-;30900:7;30929:5;30918:16;;30855:85;;;:::o;30946:158::-;31004:9;31037:61;31055:42;31064:32;31090:5;31064:32;:::i;:::-;31055:42;:::i;:::-;31037:61;:::i;:::-;31024:74;;30946:158;;;:::o;31110:147::-;31205:45;31244:5;31205:45;:::i;:::-;31200:3;31193:58;31110:147;;:::o;31263:114::-;31330:6;31364:5;31358:12;31348:22;;31263:114;;;:::o;31383:184::-;31482:11;31516:6;31511:3;31504:19;31556:4;31551:3;31547:14;31532:29;;31383:184;;;;:::o;31573:132::-;31640:4;31663:3;31655:11;;31693:4;31688:3;31684:14;31676:22;;31573:132;;;:::o;31711:108::-;31788:24;31806:5;31788:24;:::i;:::-;31783:3;31776:37;31711:108;;:::o;31825:179::-;31894:10;31915:46;31957:3;31949:6;31915:46;:::i;:::-;31993:4;31988:3;31984:14;31970:28;;31825:179;;;;:::o;32010:113::-;32080:4;32112;32107:3;32103:14;32095:22;;32010:113;;;:::o;32159:732::-;32278:3;32307:54;32355:5;32307:54;:::i;:::-;32377:86;32456:6;32451:3;32377:86;:::i;:::-;32370:93;;32487:56;32537:5;32487:56;:::i;:::-;32566:7;32597:1;32582:284;32607:6;32604:1;32601:13;32582:284;;;32683:6;32677:13;32710:63;32769:3;32754:13;32710:63;:::i;:::-;32703:70;;32796:60;32849:6;32796:60;:::i;:::-;32786:70;;32642:224;32629:1;32626;32622:9;32617:14;;32582:284;;;32586:14;32882:3;32875:10;;32283:608;;;32159:732;;;;:::o;32897:831::-;33160:4;33198:3;33187:9;33183:19;33175:27;;33212:71;33280:1;33269:9;33265:17;33256:6;33212:71;:::i;:::-;33293:80;33369:2;33358:9;33354:18;33345:6;33293:80;:::i;:::-;33420:9;33414:4;33410:20;33405:2;33394:9;33390:18;33383:48;33448:108;33551:4;33542:6;33448:108;:::i;:::-;33440:116;;33566:72;33634:2;33623:9;33619:18;33610:6;33566:72;:::i;:::-;33648:73;33716:3;33705:9;33701:19;33692:6;33648:73;:::i;:::-;32897:831;;;;;;;;:::o

Swarm Source

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