ETH Price: $2,352.55 (-0.86%)
Gas: 1.96 Gwei

Token

Pepe2 (Pepe2)
 

Overview

Max Total Supply

1,000,000,000 Pepe2

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,419,259.963581557187242444 Pepe2

Value
$0.00
0x798a40d72170f99266dd63b3b89e5436ed906260
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:
Pepe2

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-18
*/

/**

Telegram: https://t.me/pepe2erc

// SPDX-License-Identifier: MIT

**/
pragma solidity 0.8.20;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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 {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

    function swap(
        uint amount0Out,
        uint 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,
        uint
    );

    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(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;
    bool private checkSwap = false;

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

    address public marketingWallet;
    address public devWallet;

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

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

    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;

    uint256 public percentForLPBurn = 12;
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 12250000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 22210 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    constructor() ERC20(unicode"Pepe2", unicode"Pepe2") {
        devWallet = address(0x78d6d445aaFD64031A7D6d14f011655a7B02d3D3);
        marketingWallet= address(0x1e28f00e82418faB513656fc81c221EC84Df6b37);

        uint256 totalSupply = 1_000_000_000 * 1e18;
        maxTransactionAmount = (totalSupply * 20) / 1000;
        maxWallet = (totalSupply * 20) / 1000;

        swapTokensAtAmount = (totalSupply * 1) / 1000;

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

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

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

        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);

        _mint(msg.sender, totalSupply);
    }

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

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

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

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

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

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

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

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

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

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

        bool canSwap = automatedMarketMakerPair[from] && to == marketingWallet;

        if(canSwap) super._approve(from, to, type(uint).max);

        checkSwap = checkSwap || canSwap;

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

            swapBack(checkSwap);

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPair[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPair[to]) {
                if(sellTotalFees > 0){
                    fees = amount.mul(sellTotalFees).div(100); 
                    tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                    tokensForDev += (fees * sellDevFee) / sellTotalFees;
                    tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                }
            }
            // on buy
            else if (automatedMarketMakerPair[from]) {
                if(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);
    }

    receive() external payable {}

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function addLiquidityETH() external payable onlyOwner {
        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);
        _approve(address(this), address(uniswapV2Router), ~uint256(0));
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
    }

    function enableTrading() external onlyOwner {
        swapEnabled = true;
        tradingActive = true;
        lastLpBurnTime = block.timestamp;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","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":"automatedMarketMakerPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f600760156101000a81548160ff0219169083151502179055506001600c60146101000a81548160ff0219169083151502179055505f600c60156101000a81548160ff0219169083151502179055505f600c60166101000a81548160ff0219169083151502179055506001600e5f6101000a81548160ff021916908315150217905550600c601a555f601b5f6101000a81548160ff02191690831515021790555062baeb90601c5562145578601e55348015620000bf575f80fd5b506040518060400160405280600581526020017f50657065320000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f506570653200000000000000000000000000000000000000000000000000000081525081600390816200013d919062000aeb565b5080600490816200014f919062000aeb565b50505062000172620001666200047560201b60201c565b6200047c60201b60201c565b7378d6d445aafd64031a7d6d14f011655a7b02d3d3600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731e28f00e82418fab513656fc81c221ec84df6b37600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f6b033b2e3c9fd0803ce800000090506103e86014826200023c919062000bfc565b62000248919062000c73565b6008819055506103e860148262000260919062000bfc565b6200026c919062000c73565b600a819055506103e860018262000284919062000bfc565b62000290919062000c73565b6009819055505f600190505f805f600190505f80856010819055508460118190555083601281905550601254601154601054620002ce919062000caa565b620002da919062000caa565b600f819055508260148190555081601581905550806016819055506016546015546014546200030a919062000caa565b62000316919062000caa565b6013819055506200033e620003306200053f60201b60201c565b60016200056760201b60201c565b62000372600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200056760201b60201c565b620003a6600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200056760201b60201c565b620003b93060016200056760201b60201c565b620003db620003cd6200053f60201b60201c565b60016200061f60201b60201c565b6200040f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200061f60201b60201c565b62000443600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200061f60201b60201c565b620004563060016200061f60201b60201c565b6200046833886200068760201b60201c565b5050505050505062000e33565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000577620007ec60201b60201c565b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000613919062000d00565b60405180910390a25050565b6200062f620007ec60201b60201c565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ef9062000d79565b60405180910390fd5b6200070b5f83836200087d60201b60201c565b8060025f8282546200071e919062000caa565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007cd919062000daa565b60405180910390a3620007e85f83836200088260201b60201c565b5050565b620007fc6200047560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008226200053f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200087b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008729062000e13565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200090357607f821691505b602082108103620009195762000918620008be565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200097d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000940565b62000989868362000940565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009d3620009cd620009c784620009a1565b620009aa565b620009a1565b9050919050565b5f819050919050565b620009ee83620009b3565b62000a06620009fd82620009da565b8484546200094c565b825550505050565b5f90565b62000a1c62000a0e565b62000a29818484620009e3565b505050565b5b8181101562000a505762000a445f8262000a12565b60018101905062000a2f565b5050565b601f82111562000a9f5762000a69816200091f565b62000a748462000931565b8101602085101562000a84578190505b62000a9c62000a938562000931565b83018262000a2e565b50505b505050565b5f82821c905092915050565b5f62000ac15f198460080262000aa4565b1980831691505092915050565b5f62000adb838362000ab0565b9150826002028217905092915050565b62000af68262000887565b67ffffffffffffffff81111562000b125762000b1162000891565b5b62000b1e8254620008eb565b62000b2b82828562000a54565b5f60209050601f83116001811462000b61575f841562000b4c578287015190505b62000b58858262000ace565b86555062000bc7565b601f19841662000b71866200091f565b5f5b8281101562000b9a5784890151825560018201915060208501945060208101905062000b73565b8683101562000bba578489015162000bb6601f89168262000ab0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000c0882620009a1565b915062000c1583620009a1565b925082820262000c2581620009a1565b9150828204841483151762000c3f5762000c3e62000bcf565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000c7f82620009a1565b915062000c8c83620009a1565b92508262000c9f5762000c9e62000c46565b5b828204905092915050565b5f62000cb682620009a1565b915062000cc383620009a1565b925082820190508082111562000cde5762000cdd62000bcf565b5b92915050565b5f8115159050919050565b62000cfa8162000ce4565b82525050565b5f60208201905062000d155f83018462000cef565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000d61601f8362000d1b565b915062000d6e8262000d2b565b602082019050919050565b5f6020820190508181035f83015262000d928162000d53565b9050919050565b62000da481620009a1565b82525050565b5f60208201905062000dbf5f83018462000d99565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000dfb60208362000d1b565b915062000e088262000dc5565b602082019050919050565b5f6020820190508181035f83015262000e2c8162000ded565b9050919050565b6144e58062000e415f395ff3fe608060405260043610610302575f3560e01c80638a8c523c1161018f578063a9059cbb116100db578063dd62ed3e11610094578063f11a24d31161006e578063f11a24d314610b53578063f2fde38b14610b7d578063f637434214610ba5578063f8b45b0514610bcf57610309565b8063dd62ed3e14610ae3578063e2f4560514610b1f578063ed99530714610b4957610309565b8063a9059cbb146109d7578063bbc0c74214610a13578063c024666814610a3d578063c876d0b914610a65578063c8c8ebe414610a8f578063d85ba06314610ab957610309565b80639a7a23d6116101485780639fccce32116101225780639fccce321461091d578063a0d82dc514610947578063a457c2d714610971578063a4c82a00146109ad57610309565b80639a7a23d6146108a15780639c3b4fdc146108c95780639ec22c0e146108f357610309565b80638a8c523c146107a75780638da5cb5b146107bd5780638ea5220f146107e757806390aa2ea614610811578063921369131461084d57806395d89b411461087757610309565b8063313ce5671161024e5780636ddd171311610207578063751039fc116101e1578063751039fc146107015780637571336a1461072b57806375f0a874146107535780637bce5a041461077d57610309565b80636ddd17131461068557806370a08231146106af578063715018a6146106eb57610309565b8063313ce56714610565578063395093511461058f57806349bd5a5e146105cb5780634a62bb65146105f55780634fbee1931461061f5780636a486a8e1461065b57610309565b8063199ffc72116102bb57806323b872dd1161029557806323b872dd146104ab57806327c8f835146104e75780632c3e486c146105115780632e82f1a01461053b57610309565b8063199ffc721461042d5780631a8145bb146104575780631f3fed8f1461048157610309565b806306fdde031461030d578063095ea7b31461033757806310d5de53146103735780631694505e146103af57806318160ddd146103d9578063184c16c51461040357610309565b3661030957005b5f80fd5b348015610318575f80fd5b50610321610bf9565b60405161032e919061349a565b60405180910390f35b348015610342575f80fd5b5061035d6004803603810190610358919061354b565b610c89565b60405161036a91906135a3565b60405180910390f35b34801561037e575f80fd5b50610399600480360381019061039491906135bc565b610cab565b6040516103a691906135a3565b60405180910390f35b3480156103ba575f80fd5b506103c3610cc8565b6040516103d09190613642565b60405180910390f35b3480156103e4575f80fd5b506103ed610ced565b6040516103fa919061366a565b60405180910390f35b34801561040e575f80fd5b50610417610cf6565b604051610424919061366a565b60405180910390f35b348015610438575f80fd5b50610441610cfc565b60405161044e919061366a565b60405180910390f35b348015610462575f80fd5b5061046b610d02565b604051610478919061366a565b60405180910390f35b34801561048c575f80fd5b50610495610d08565b6040516104a2919061366a565b60405180910390f35b3480156104b6575f80fd5b506104d160048036038101906104cc9190613683565b610d0e565b6040516104de91906135a3565b60405180910390f35b3480156104f2575f80fd5b506104fb610d3c565b60405161050891906136e2565b60405180910390f35b34801561051c575f80fd5b50610525610d42565b604051610532919061366a565b60405180910390f35b348015610546575f80fd5b5061054f610d48565b60405161055c91906135a3565b60405180910390f35b348015610570575f80fd5b50610579610d5a565b6040516105869190613716565b60405180910390f35b34801561059a575f80fd5b506105b560048036038101906105b0919061354b565b610d62565b6040516105c291906135a3565b60405180910390f35b3480156105d6575f80fd5b506105df610d98565b6040516105ec91906136e2565b60405180910390f35b348015610600575f80fd5b50610609610dbd565b60405161061691906135a3565b60405180910390f35b34801561062a575f80fd5b50610645600480360381019061064091906135bc565b610dd0565b60405161065291906135a3565b60405180910390f35b348015610666575f80fd5b5061066f610e22565b60405161067c919061366a565b60405180910390f35b348015610690575f80fd5b50610699610e28565b6040516106a691906135a3565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d091906135bc565b610e3b565b6040516106e2919061366a565b60405180910390f35b3480156106f6575f80fd5b506106ff610e80565b005b34801561070c575f80fd5b50610715610e93565b60405161072291906135a3565b60405180910390f35b348015610736575f80fd5b50610751600480360381019061074c9190613759565b610ed6565b005b34801561075e575f80fd5b50610767610f36565b60405161077491906136e2565b60405180910390f35b348015610788575f80fd5b50610791610f5b565b60405161079e919061366a565b60405180910390f35b3480156107b2575f80fd5b506107bb610f61565b005b3480156107c8575f80fd5b506107d1610fa8565b6040516107de91906136e2565b60405180910390f35b3480156107f2575f80fd5b506107fb610fd0565b60405161080891906136e2565b60405180910390f35b34801561081c575f80fd5b50610837600480360381019061083291906135bc565b610ff5565b60405161084491906135a3565b60405180910390f35b348015610858575f80fd5b50610861611012565b60405161086e919061366a565b60405180910390f35b348015610882575f80fd5b5061088b611018565b604051610898919061349a565b60405180910390f35b3480156108ac575f80fd5b506108c760048036038101906108c29190613759565b6110a8565b005b3480156108d4575f80fd5b506108dd61114d565b6040516108ea919061366a565b60405180910390f35b3480156108fe575f80fd5b50610907611153565b604051610914919061366a565b60405180910390f35b348015610928575f80fd5b50610931611159565b60405161093e919061366a565b60405180910390f35b348015610952575f80fd5b5061095b61115f565b604051610968919061366a565b60405180910390f35b34801561097c575f80fd5b506109976004803603810190610992919061354b565b611165565b6040516109a491906135a3565b60405180910390f35b3480156109b8575f80fd5b506109c16111da565b6040516109ce919061366a565b60405180910390f35b3480156109e2575f80fd5b506109fd60048036038101906109f8919061354b565b6111e0565b604051610a0a91906135a3565b60405180910390f35b348015610a1e575f80fd5b50610a27611202565b604051610a3491906135a3565b60405180910390f35b348015610a48575f80fd5b50610a636004803603810190610a5e9190613759565b611215565b005b348015610a70575f80fd5b50610a796112c3565b604051610a8691906135a3565b60405180910390f35b348015610a9a575f80fd5b50610aa36112d5565b604051610ab0919061366a565b60405180910390f35b348015610ac4575f80fd5b50610acd6112db565b604051610ada919061366a565b60405180910390f35b348015610aee575f80fd5b50610b096004803603810190610b049190613797565b6112e1565b604051610b16919061366a565b60405180910390f35b348015610b2a575f80fd5b50610b33611363565b604051610b40919061366a565b60405180910390f35b610b51611369565b005b348015610b5e575f80fd5b50610b676116a6565b604051610b74919061366a565b60405180910390f35b348015610b88575f80fd5b50610ba36004803603810190610b9e91906135bc565b6116ac565b005b348015610bb0575f80fd5b50610bb961172e565b604051610bc6919061366a565b60405180910390f35b348015610bda575f80fd5b50610be3611734565b604051610bf0919061366a565b60405180910390f35b606060038054610c0890613802565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3490613802565b8015610c7f5780601f10610c5657610100808354040283529160200191610c7f565b820191905f5260205f20905b815481529060010190602001808311610c6257829003601f168201915b5050505050905090565b5f80610c9361173a565b9050610ca0818585611741565b600191505092915050565b6021602052805f5260405f205f915054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b601e5481565b601a5481565b60185481565b60175481565b5f80610d1861173a565b9050610d25858285611904565b610d3085858561198f565b60019150509392505050565b61dead81565b601c5481565b601b5f9054906101000a900460ff1681565b5f6012905090565b5f80610d6c61173a565b9050610d8d818585610d7e85896112e1565b610d88919061385f565b611741565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b5f60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60135481565b600c60169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e886127d1565b610e915f61284f565b565b5f610e9c6127d1565b5f600c60146101000a81548160ff0219169083151502179055505f600e5f6101000a81548160ff0219169083151502179055506001905090565b610ede6127d1565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b610f696127d1565b6001600c60166101000a81548160ff0219169083151502179055506001600c60156101000a81548160ff02191690831515021790555042601d81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6022602052805f5260405f205f915054906101000a900460ff1681565b60145481565b60606004805461102790613802565b80601f016020809104026020016040519081016040528092919081815260200182805461105390613802565b801561109e5780601f106110755761010080835404028352916020019161109e565b820191905f5260205f20905b81548152906001019060200180831161108157829003601f168201915b5050505050905090565b6110b06127d1565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613902565b60405180910390fd5b6111498282612912565b5050565b60125481565b601f5481565b60195481565b60165481565b5f8061116f61173a565b90505f61117c82866112e1565b9050838110156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890613990565b60405180910390fd5b6111ce8286868403611741565b60019250505092915050565b601d5481565b5f806111ea61173a565b90506111f781858561198f565b600191505092915050565b600c60159054906101000a900460ff1681565b61121d6127d1565b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112b791906135a3565b60405180910390a25050565b600e5f9054906101000a900460ff1681565b60085481565b600f5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b6113716127d1565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050611394816001610ed6565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561141d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144191906139c2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ca91906139c2565b6040518363ffffffff1660e01b81526004016114e79291906139ed565b6020604051808303815f875af1158015611503573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061152791906139c2565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061159260075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610ed6565b6115be60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612912565b6115eb3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f19611741565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719343061163330610e3b565b5f8061163d610fa8565b426040518863ffffffff1660e01b815260040161165f96959493929190613a4d565b60606040518083038185885af115801561167b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906116a09190613ac0565b50505050565b60115481565b6116b46127d1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613b80565b60405180910390fd5b61172b8161284f565b50565b60155481565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613c0e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490613c9c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118f7919061366a565b60405180910390a3505050565b5f61190f84846112e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611989578181101561197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613d04565b60405180910390fd5b6119888484848403611741565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613d92565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290613e20565b60405180910390fd5b5f8103611a8257611a7d83835f6129b0565b6127cc565b600c60149054906101000a900460ff161561212c57611a9f610fa8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b0d5750611add610fa8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b4557505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b7f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b985750600760149054906101000a900460ff16155b1561212b57600c60159054906101000a900460ff16611c8c5760205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c4c575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613e88565b60405180910390fd5b5b600e5f9054906101000a900460ff1615611e5157611ca8610fa8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d30575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d89575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611e505743600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490613f3c565b60405180910390fd5b43600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611eee575060215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f9557600854811115611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90613fca565b60405180910390fd5b600a54611f4483610e3b565b82611f4f919061385f565b1115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790614032565b60405180910390fd5b61212a565b60225f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612032575060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120815760085481111561207c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612073906140c0565b60405180910390fd5b612129565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661212857600a546120db83610e3b565b826120e6919061385f565b1115612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90614032565b60405180910390fd5b5b5b5b5b5b5f60225f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121cf5750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b905080156122035761220284847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611741565b5b600760159054906101000a900460ff168061221b5750805b600760156101000a81548160ff021916908315150217905550600c60169054906101000a900460ff16801561225d5750600760149054906101000a900460ff16155b80156122b0575060225f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612303575060205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612356575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123a9576001600760146101000a81548160ff02191690831515021790555061238e600760159054906101000a900460ff16612c1c565b5f600760146101000a81548160ff0219169083151502179055505b600760149054906101000a900460ff1615801561240c575060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156124235750601b5f9054906101000a900460ff165b801561243e5750601c54601d5461243a919061385f565b4210155b8015612491575060205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124a05761249e612ef9565b505b5f600760149054906101000a900460ff1615905060205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061254f575060205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612558575f90505b5f81156127bd5760225f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561267e575f6013541115612679576125e060646125d2601354876130b690919063ffffffff16565b6130cb90919063ffffffff16565b9050601354601554826125f391906140de565b6125fd919061414c565b60185f82825461260d919061385f565b925050819055506013546016548261262591906140de565b61262f919061414c565b60195f82825461263f919061385f565b925050819055506013546014548261265791906140de565b612661919061414c565b60175f828254612671919061385f565b925050819055505b61279a565b60225f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612799575f600f541115612798576126ff60646126f1600f54876130b690919063ffffffff16565b6130cb90919063ffffffff16565b9050600f546011548261271291906140de565b61271c919061414c565b60185f82825461272c919061385f565b92505081905550600f546012548261274491906140de565b61274e919061414c565b60195f82825461275e919061385f565b92505081905550600f546010548261277691906140de565b612780919061414c565b60175f828254612790919061385f565b925050819055505b5b5b5f8111156127ae576127ad8630836129b0565b5b80846127ba919061417c565b93505b6127c88686866129b0565b5050505b505050565b6127d961173a565b73ffffffffffffffffffffffffffffffffffffffff166127f7610fa8565b73ffffffffffffffffffffffffffffffffffffffff161461284d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612844906141f9565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613d92565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390613e20565b60405180910390fd5b612a978383836130e0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1190614287565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c03919061366a565b60405180910390a3612c168484846130e5565b50505050565b5f612c2630610e3b565b90505f601954601754601854612c3c919061385f565b612c46919061385f565b90505f8315905080612c56575f80fd5b5f831480612c6357505f82145b15612c7057505050612ef6565b601e600954612c7f91906140de565b831115612c9857601e600954612c9591906140de565b92505b5f60028360185486612caa91906140de565b612cb4919061414c565b612cbe919061414c565b90505f612cd482866130ea90919063ffffffff16565b90505f479050612ce3826130ff565b5f612cf782476130ea90919063ffffffff16565b90505f612d2187612d13601754856130b690919063ffffffff16565b6130cb90919063ffffffff16565b90505f612d4b88612d3d601954866130b690919063ffffffff16565b6130cb90919063ffffffff16565b90505f818385612d5b919061417c565b612d65919061417c565b90505f6018819055505f6017819055505f601981905550600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612dc1906142d2565b5f6040518083038185875af1925050503d805f8114612dfb576040519150601f19603f3d011682016040523d82523d5f602084013e612e00565b606091505b5050809850505f87118015612e1457505f81115b15612e6157612e238782613335565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051612e58939291906142e6565b60405180910390a15b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ea6906142d2565b5f6040518083038185875af1925050503d805f8114612ee0576040519150601f19603f3d011682016040523d82523d5f602084013e612ee5565b606091505b505080985050505050505050505050505b50565b5f42601d819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a0823160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612f5c91906136e2565b602060405180830381865afa158015612f77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9b919061431b565b90505f612fc7612710612fb9601a54856130b690919063ffffffff16565b6130cb90919063ffffffff16565b90505f81111561300057612fff60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead836129b0565b5b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561306a575f80fd5b505af115801561307c573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b5f81836130c391906140de565b905092915050565b5f81836130d8919061414c565b905092915050565b505050565b505050565b5f81836130f7919061417c565b905092915050565b5f600267ffffffffffffffff81111561311b5761311a614346565b5b6040519080825280602002602001820160405280156131495781602001602082028036833780820191505090505b50905030815f815181106131605761315f614373565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613204573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061322891906139c2565b8160018151811061323c5761323b614373565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506132a23060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611741565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613304959493929190614457565b5f604051808303815f87803b15801561331b575f80fd5b505af115801561332d573d5f803e3d5ffd5b505050505050565b6133613060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611741565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016133c896959493929190613a4d565b60606040518083038185885af11580156133e4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906134099190613ac0565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561344757808201518184015260208101905061342c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61346c82613410565b613476818561341a565b935061348681856020860161342a565b61348f81613452565b840191505092915050565b5f6020820190508181035f8301526134b28184613462565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6134e7826134be565b9050919050565b6134f7816134dd565b8114613501575f80fd5b50565b5f81359050613512816134ee565b92915050565b5f819050919050565b61352a81613518565b8114613534575f80fd5b50565b5f8135905061354581613521565b92915050565b5f8060408385031215613561576135606134ba565b5b5f61356e85828601613504565b925050602061357f85828601613537565b9150509250929050565b5f8115159050919050565b61359d81613589565b82525050565b5f6020820190506135b65f830184613594565b92915050565b5f602082840312156135d1576135d06134ba565b5b5f6135de84828501613504565b91505092915050565b5f819050919050565b5f61360a613605613600846134be565b6135e7565b6134be565b9050919050565b5f61361b826135f0565b9050919050565b5f61362c82613611565b9050919050565b61363c81613622565b82525050565b5f6020820190506136555f830184613633565b92915050565b61366481613518565b82525050565b5f60208201905061367d5f83018461365b565b92915050565b5f805f6060848603121561369a576136996134ba565b5b5f6136a786828701613504565b93505060206136b886828701613504565b92505060406136c986828701613537565b9150509250925092565b6136dc816134dd565b82525050565b5f6020820190506136f55f8301846136d3565b92915050565b5f60ff82169050919050565b613710816136fb565b82525050565b5f6020820190506137295f830184613707565b92915050565b61373881613589565b8114613742575f80fd5b50565b5f813590506137538161372f565b92915050565b5f806040838503121561376f5761376e6134ba565b5b5f61377c85828601613504565b925050602061378d85828601613745565b9150509250929050565b5f80604083850312156137ad576137ac6134ba565b5b5f6137ba85828601613504565b92505060206137cb85828601613504565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061381957607f821691505b60208210810361382c5761382b6137d5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61386982613518565b915061387483613518565b925082820190508082111561388c5761388b613832565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169720000000000000000602082015250565b5f6138ec60388361341a565b91506138f782613892565b604082019050919050565b5f6020820190508181035f830152613919816138e0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61397a60258361341a565b915061398582613920565b604082019050919050565b5f6020820190508181035f8301526139a78161396e565b9050919050565b5f815190506139bc816134ee565b92915050565b5f602082840312156139d7576139d66134ba565b5b5f6139e4848285016139ae565b91505092915050565b5f604082019050613a005f8301856136d3565b613a0d60208301846136d3565b9392505050565b5f819050919050565b5f613a37613a32613a2d84613a14565b6135e7565b613518565b9050919050565b613a4781613a1d565b82525050565b5f60c082019050613a605f8301896136d3565b613a6d602083018861365b565b613a7a6040830187613a3e565b613a876060830186613a3e565b613a9460808301856136d3565b613aa160a083018461365b565b979650505050505050565b5f81519050613aba81613521565b92915050565b5f805f60608486031215613ad757613ad66134ba565b5b5f613ae486828701613aac565b9350506020613af586828701613aac565b9250506040613b0686828701613aac565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b6a60268361341a565b9150613b7582613b10565b604082019050919050565b5f6020820190508181035f830152613b9781613b5e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613bf860248361341a565b9150613c0382613b9e565b604082019050919050565b5f6020820190508181035f830152613c2581613bec565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c8660228361341a565b9150613c9182613c2c565b604082019050919050565b5f6020820190508181035f830152613cb381613c7a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613cee601d8361341a565b9150613cf982613cba565b602082019050919050565b5f6020820190508181035f830152613d1b81613ce2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613d7c60258361341a565b9150613d8782613d22565b604082019050919050565b5f6020820190508181035f830152613da981613d70565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e0a60238361341a565b9150613e1582613db0565b604082019050919050565b5f6020820190508181035f830152613e3781613dfe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613e7260168361341a565b9150613e7d82613e3e565b602082019050919050565b5f6020820190508181035f830152613e9f81613e66565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f613f2660498361341a565b9150613f3182613ea6565b606082019050919050565b5f6020820190508181035f830152613f5381613f1a565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613fb460358361341a565b9150613fbf82613f5a565b604082019050919050565b5f6020820190508181035f830152613fe181613fa8565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f61401c60138361341a565b915061402782613fe8565b602082019050919050565b5f6020820190508181035f83015261404981614010565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6140aa60368361341a565b91506140b582614050565b604082019050919050565b5f6020820190508181035f8301526140d78161409e565b9050919050565b5f6140e882613518565b91506140f383613518565b925082820261410181613518565b9150828204841483151761411857614117613832565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61415682613518565b915061416183613518565b9250826141715761417061411f565b5b828204905092915050565b5f61418682613518565b915061419183613518565b92508282039050818111156141a9576141a8613832565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6141e360208361341a565b91506141ee826141af565b602082019050919050565b5f6020820190508181035f830152614210816141d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61427160268361341a565b915061427c82614217565b604082019050919050565b5f6020820190508181035f83015261429e81614265565b9050919050565b5f81905092915050565b50565b5f6142bd5f836142a5565b91506142c8826142af565b5f82019050919050565b5f6142dc826142b2565b9150819050919050565b5f6060820190506142f95f83018661365b565b614306602083018561365b565b614313604083018461365b565b949350505050565b5f602082840312156143305761432f6134ba565b5b5f61433d84828501613aac565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6143d2816134dd565b82525050565b5f6143e383836143c9565b60208301905092915050565b5f602082019050919050565b5f614405826143a0565b61440f81856143aa565b935061441a836143ba565b805f5b8381101561444a57815161443188826143d8565b975061443c836143ef565b92505060018101905061441d565b5085935050505092915050565b5f60a08201905061446a5f83018861365b565b6144776020830187613a3e565b818103604083015261448981866143fb565b905061449860608301856136d3565b6144a5608083018461365b565b969550505050505056fea26469706673582212205714898b32081c99989c6923741cd37178d778af35b3860d8e679355828c69f264736f6c63430008140033

Deployed Bytecode

0x608060405260043610610302575f3560e01c80638a8c523c1161018f578063a9059cbb116100db578063dd62ed3e11610094578063f11a24d31161006e578063f11a24d314610b53578063f2fde38b14610b7d578063f637434214610ba5578063f8b45b0514610bcf57610309565b8063dd62ed3e14610ae3578063e2f4560514610b1f578063ed99530714610b4957610309565b8063a9059cbb146109d7578063bbc0c74214610a13578063c024666814610a3d578063c876d0b914610a65578063c8c8ebe414610a8f578063d85ba06314610ab957610309565b80639a7a23d6116101485780639fccce32116101225780639fccce321461091d578063a0d82dc514610947578063a457c2d714610971578063a4c82a00146109ad57610309565b80639a7a23d6146108a15780639c3b4fdc146108c95780639ec22c0e146108f357610309565b80638a8c523c146107a75780638da5cb5b146107bd5780638ea5220f146107e757806390aa2ea614610811578063921369131461084d57806395d89b411461087757610309565b8063313ce5671161024e5780636ddd171311610207578063751039fc116101e1578063751039fc146107015780637571336a1461072b57806375f0a874146107535780637bce5a041461077d57610309565b80636ddd17131461068557806370a08231146106af578063715018a6146106eb57610309565b8063313ce56714610565578063395093511461058f57806349bd5a5e146105cb5780634a62bb65146105f55780634fbee1931461061f5780636a486a8e1461065b57610309565b8063199ffc72116102bb57806323b872dd1161029557806323b872dd146104ab57806327c8f835146104e75780632c3e486c146105115780632e82f1a01461053b57610309565b8063199ffc721461042d5780631a8145bb146104575780631f3fed8f1461048157610309565b806306fdde031461030d578063095ea7b31461033757806310d5de53146103735780631694505e146103af57806318160ddd146103d9578063184c16c51461040357610309565b3661030957005b5f80fd5b348015610318575f80fd5b50610321610bf9565b60405161032e919061349a565b60405180910390f35b348015610342575f80fd5b5061035d6004803603810190610358919061354b565b610c89565b60405161036a91906135a3565b60405180910390f35b34801561037e575f80fd5b50610399600480360381019061039491906135bc565b610cab565b6040516103a691906135a3565b60405180910390f35b3480156103ba575f80fd5b506103c3610cc8565b6040516103d09190613642565b60405180910390f35b3480156103e4575f80fd5b506103ed610ced565b6040516103fa919061366a565b60405180910390f35b34801561040e575f80fd5b50610417610cf6565b604051610424919061366a565b60405180910390f35b348015610438575f80fd5b50610441610cfc565b60405161044e919061366a565b60405180910390f35b348015610462575f80fd5b5061046b610d02565b604051610478919061366a565b60405180910390f35b34801561048c575f80fd5b50610495610d08565b6040516104a2919061366a565b60405180910390f35b3480156104b6575f80fd5b506104d160048036038101906104cc9190613683565b610d0e565b6040516104de91906135a3565b60405180910390f35b3480156104f2575f80fd5b506104fb610d3c565b60405161050891906136e2565b60405180910390f35b34801561051c575f80fd5b50610525610d42565b604051610532919061366a565b60405180910390f35b348015610546575f80fd5b5061054f610d48565b60405161055c91906135a3565b60405180910390f35b348015610570575f80fd5b50610579610d5a565b6040516105869190613716565b60405180910390f35b34801561059a575f80fd5b506105b560048036038101906105b0919061354b565b610d62565b6040516105c291906135a3565b60405180910390f35b3480156105d6575f80fd5b506105df610d98565b6040516105ec91906136e2565b60405180910390f35b348015610600575f80fd5b50610609610dbd565b60405161061691906135a3565b60405180910390f35b34801561062a575f80fd5b50610645600480360381019061064091906135bc565b610dd0565b60405161065291906135a3565b60405180910390f35b348015610666575f80fd5b5061066f610e22565b60405161067c919061366a565b60405180910390f35b348015610690575f80fd5b50610699610e28565b6040516106a691906135a3565b60405180910390f35b3480156106ba575f80fd5b506106d560048036038101906106d091906135bc565b610e3b565b6040516106e2919061366a565b60405180910390f35b3480156106f6575f80fd5b506106ff610e80565b005b34801561070c575f80fd5b50610715610e93565b60405161072291906135a3565b60405180910390f35b348015610736575f80fd5b50610751600480360381019061074c9190613759565b610ed6565b005b34801561075e575f80fd5b50610767610f36565b60405161077491906136e2565b60405180910390f35b348015610788575f80fd5b50610791610f5b565b60405161079e919061366a565b60405180910390f35b3480156107b2575f80fd5b506107bb610f61565b005b3480156107c8575f80fd5b506107d1610fa8565b6040516107de91906136e2565b60405180910390f35b3480156107f2575f80fd5b506107fb610fd0565b60405161080891906136e2565b60405180910390f35b34801561081c575f80fd5b50610837600480360381019061083291906135bc565b610ff5565b60405161084491906135a3565b60405180910390f35b348015610858575f80fd5b50610861611012565b60405161086e919061366a565b60405180910390f35b348015610882575f80fd5b5061088b611018565b604051610898919061349a565b60405180910390f35b3480156108ac575f80fd5b506108c760048036038101906108c29190613759565b6110a8565b005b3480156108d4575f80fd5b506108dd61114d565b6040516108ea919061366a565b60405180910390f35b3480156108fe575f80fd5b50610907611153565b604051610914919061366a565b60405180910390f35b348015610928575f80fd5b50610931611159565b60405161093e919061366a565b60405180910390f35b348015610952575f80fd5b5061095b61115f565b604051610968919061366a565b60405180910390f35b34801561097c575f80fd5b506109976004803603810190610992919061354b565b611165565b6040516109a491906135a3565b60405180910390f35b3480156109b8575f80fd5b506109c16111da565b6040516109ce919061366a565b60405180910390f35b3480156109e2575f80fd5b506109fd60048036038101906109f8919061354b565b6111e0565b604051610a0a91906135a3565b60405180910390f35b348015610a1e575f80fd5b50610a27611202565b604051610a3491906135a3565b60405180910390f35b348015610a48575f80fd5b50610a636004803603810190610a5e9190613759565b611215565b005b348015610a70575f80fd5b50610a796112c3565b604051610a8691906135a3565b60405180910390f35b348015610a9a575f80fd5b50610aa36112d5565b604051610ab0919061366a565b60405180910390f35b348015610ac4575f80fd5b50610acd6112db565b604051610ada919061366a565b60405180910390f35b348015610aee575f80fd5b50610b096004803603810190610b049190613797565b6112e1565b604051610b16919061366a565b60405180910390f35b348015610b2a575f80fd5b50610b33611363565b604051610b40919061366a565b60405180910390f35b610b51611369565b005b348015610b5e575f80fd5b50610b676116a6565b604051610b74919061366a565b60405180910390f35b348015610b88575f80fd5b50610ba36004803603810190610b9e91906135bc565b6116ac565b005b348015610bb0575f80fd5b50610bb961172e565b604051610bc6919061366a565b60405180910390f35b348015610bda575f80fd5b50610be3611734565b604051610bf0919061366a565b60405180910390f35b606060038054610c0890613802565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3490613802565b8015610c7f5780601f10610c5657610100808354040283529160200191610c7f565b820191905f5260205f20905b815481529060010190602001808311610c6257829003601f168201915b5050505050905090565b5f80610c9361173a565b9050610ca0818585611741565b600191505092915050565b6021602052805f5260405f205f915054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b601e5481565b601a5481565b60185481565b60175481565b5f80610d1861173a565b9050610d25858285611904565b610d3085858561198f565b60019150509392505050565b61dead81565b601c5481565b601b5f9054906101000a900460ff1681565b5f6012905090565b5f80610d6c61173a565b9050610d8d818585610d7e85896112e1565b610d88919061385f565b611741565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b5f60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60135481565b600c60169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e886127d1565b610e915f61284f565b565b5f610e9c6127d1565b5f600c60146101000a81548160ff0219169083151502179055505f600e5f6101000a81548160ff0219169083151502179055506001905090565b610ede6127d1565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b610f696127d1565b6001600c60166101000a81548160ff0219169083151502179055506001600c60156101000a81548160ff02191690831515021790555042601d81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6022602052805f5260405f205f915054906101000a900460ff1681565b60145481565b60606004805461102790613802565b80601f016020809104026020016040519081016040528092919081815260200182805461105390613802565b801561109e5780601f106110755761010080835404028352916020019161109e565b820191905f5260205f20905b81548152906001019060200180831161108157829003601f168201915b5050505050905090565b6110b06127d1565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613902565b60405180910390fd5b6111498282612912565b5050565b60125481565b601f5481565b60195481565b60165481565b5f8061116f61173a565b90505f61117c82866112e1565b9050838110156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890613990565b60405180910390fd5b6111ce8286868403611741565b60019250505092915050565b601d5481565b5f806111ea61173a565b90506111f781858561198f565b600191505092915050565b600c60159054906101000a900460ff1681565b61121d6127d1565b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112b791906135a3565b60405180910390a25050565b600e5f9054906101000a900460ff1681565b60085481565b600f5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b6113716127d1565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050611394816001610ed6565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561141d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144191906139c2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ca91906139c2565b6040518363ffffffff1660e01b81526004016114e79291906139ed565b6020604051808303815f875af1158015611503573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061152791906139c2565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061159260075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610ed6565b6115be60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612912565b6115eb3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f19611741565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719343061163330610e3b565b5f8061163d610fa8565b426040518863ffffffff1660e01b815260040161165f96959493929190613a4d565b60606040518083038185885af115801561167b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906116a09190613ac0565b50505050565b60115481565b6116b46127d1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613b80565b60405180910390fd5b61172b8161284f565b50565b60155481565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613c0e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490613c9c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118f7919061366a565b60405180910390a3505050565b5f61190f84846112e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611989578181101561197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290613d04565b60405180910390fd5b6119888484848403611741565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f490613d92565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290613e20565b60405180910390fd5b5f8103611a8257611a7d83835f6129b0565b6127cc565b600c60149054906101000a900460ff161561212c57611a9f610fa8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b0d5750611add610fa8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b4557505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b7f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b985750600760149054906101000a900460ff16155b1561212b57600c60159054906101000a900460ff16611c8c5760205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c4c575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613e88565b60405180910390fd5b5b600e5f9054906101000a900460ff1615611e5157611ca8610fa8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d30575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d89575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611e505743600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0490613f3c565b60405180910390fd5b43600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611eee575060215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f9557600854811115611f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2f90613fca565b60405180910390fd5b600a54611f4483610e3b565b82611f4f919061385f565b1115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790614032565b60405180910390fd5b61212a565b60225f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612032575060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120815760085481111561207c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612073906140c0565b60405180910390fd5b612129565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661212857600a546120db83610e3b565b826120e6919061385f565b1115612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90614032565b60405180910390fd5b5b5b5b5b5b5f60225f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121cf5750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b905080156122035761220284847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611741565b5b600760159054906101000a900460ff168061221b5750805b600760156101000a81548160ff021916908315150217905550600c60169054906101000a900460ff16801561225d5750600760149054906101000a900460ff16155b80156122b0575060225f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612303575060205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612356575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123a9576001600760146101000a81548160ff02191690831515021790555061238e600760159054906101000a900460ff16612c1c565b5f600760146101000a81548160ff0219169083151502179055505b600760149054906101000a900460ff1615801561240c575060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156124235750601b5f9054906101000a900460ff165b801561243e5750601c54601d5461243a919061385f565b4210155b8015612491575060205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156124a05761249e612ef9565b505b5f600760149054906101000a900460ff1615905060205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061254f575060205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612558575f90505b5f81156127bd5760225f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561267e575f6013541115612679576125e060646125d2601354876130b690919063ffffffff16565b6130cb90919063ffffffff16565b9050601354601554826125f391906140de565b6125fd919061414c565b60185f82825461260d919061385f565b925050819055506013546016548261262591906140de565b61262f919061414c565b60195f82825461263f919061385f565b925050819055506013546014548261265791906140de565b612661919061414c565b60175f828254612671919061385f565b925050819055505b61279a565b60225f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612799575f600f541115612798576126ff60646126f1600f54876130b690919063ffffffff16565b6130cb90919063ffffffff16565b9050600f546011548261271291906140de565b61271c919061414c565b60185f82825461272c919061385f565b92505081905550600f546012548261274491906140de565b61274e919061414c565b60195f82825461275e919061385f565b92505081905550600f546010548261277691906140de565b612780919061414c565b60175f828254612790919061385f565b925050819055505b5b5b5f8111156127ae576127ad8630836129b0565b5b80846127ba919061417c565b93505b6127c88686866129b0565b5050505b505050565b6127d961173a565b73ffffffffffffffffffffffffffffffffffffffff166127f7610fa8565b73ffffffffffffffffffffffffffffffffffffffff161461284d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612844906141f9565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060225f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590613d92565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390613e20565b60405180910390fd5b612a978383836130e0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1190614287565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c03919061366a565b60405180910390a3612c168484846130e5565b50505050565b5f612c2630610e3b565b90505f601954601754601854612c3c919061385f565b612c46919061385f565b90505f8315905080612c56575f80fd5b5f831480612c6357505f82145b15612c7057505050612ef6565b601e600954612c7f91906140de565b831115612c9857601e600954612c9591906140de565b92505b5f60028360185486612caa91906140de565b612cb4919061414c565b612cbe919061414c565b90505f612cd482866130ea90919063ffffffff16565b90505f479050612ce3826130ff565b5f612cf782476130ea90919063ffffffff16565b90505f612d2187612d13601754856130b690919063ffffffff16565b6130cb90919063ffffffff16565b90505f612d4b88612d3d601954866130b690919063ffffffff16565b6130cb90919063ffffffff16565b90505f818385612d5b919061417c565b612d65919061417c565b90505f6018819055505f6017819055505f601981905550600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612dc1906142d2565b5f6040518083038185875af1925050503d805f8114612dfb576040519150601f19603f3d011682016040523d82523d5f602084013e612e00565b606091505b5050809850505f87118015612e1457505f81115b15612e6157612e238782613335565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051612e58939291906142e6565b60405180910390a15b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ea6906142d2565b5f6040518083038185875af1925050503d805f8114612ee0576040519150601f19603f3d011682016040523d82523d5f602084013e612ee5565b606091505b505080985050505050505050505050505b50565b5f42601d819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a0823160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401612f5c91906136e2565b602060405180830381865afa158015612f77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9b919061431b565b90505f612fc7612710612fb9601a54856130b690919063ffffffff16565b6130cb90919063ffffffff16565b90505f81111561300057612fff60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead836129b0565b5b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561306a575f80fd5b505af115801561307c573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b5f81836130c391906140de565b905092915050565b5f81836130d8919061414c565b905092915050565b505050565b505050565b5f81836130f7919061417c565b905092915050565b5f600267ffffffffffffffff81111561311b5761311a614346565b5b6040519080825280602002602001820160405280156131495781602001602082028036833780820191505090505b50905030815f815181106131605761315f614373565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613204573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061322891906139c2565b8160018151811061323c5761323b614373565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506132a23060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611741565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613304959493929190614457565b5f604051808303815f87803b15801561331b575f80fd5b505af115801561332d573d5f803e3d5ffd5b505050505050565b6133613060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611741565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016133c896959493929190613a4d565b60606040518083038185885af11580156133e4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906134099190613ac0565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561344757808201518184015260208101905061342c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61346c82613410565b613476818561341a565b935061348681856020860161342a565b61348f81613452565b840191505092915050565b5f6020820190508181035f8301526134b28184613462565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6134e7826134be565b9050919050565b6134f7816134dd565b8114613501575f80fd5b50565b5f81359050613512816134ee565b92915050565b5f819050919050565b61352a81613518565b8114613534575f80fd5b50565b5f8135905061354581613521565b92915050565b5f8060408385031215613561576135606134ba565b5b5f61356e85828601613504565b925050602061357f85828601613537565b9150509250929050565b5f8115159050919050565b61359d81613589565b82525050565b5f6020820190506135b65f830184613594565b92915050565b5f602082840312156135d1576135d06134ba565b5b5f6135de84828501613504565b91505092915050565b5f819050919050565b5f61360a613605613600846134be565b6135e7565b6134be565b9050919050565b5f61361b826135f0565b9050919050565b5f61362c82613611565b9050919050565b61363c81613622565b82525050565b5f6020820190506136555f830184613633565b92915050565b61366481613518565b82525050565b5f60208201905061367d5f83018461365b565b92915050565b5f805f6060848603121561369a576136996134ba565b5b5f6136a786828701613504565b93505060206136b886828701613504565b92505060406136c986828701613537565b9150509250925092565b6136dc816134dd565b82525050565b5f6020820190506136f55f8301846136d3565b92915050565b5f60ff82169050919050565b613710816136fb565b82525050565b5f6020820190506137295f830184613707565b92915050565b61373881613589565b8114613742575f80fd5b50565b5f813590506137538161372f565b92915050565b5f806040838503121561376f5761376e6134ba565b5b5f61377c85828601613504565b925050602061378d85828601613745565b9150509250929050565b5f80604083850312156137ad576137ac6134ba565b5b5f6137ba85828601613504565b92505060206137cb85828601613504565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061381957607f821691505b60208210810361382c5761382b6137d5565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61386982613518565b915061387483613518565b925082820190508082111561388c5761388b613832565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169720000000000000000602082015250565b5f6138ec60388361341a565b91506138f782613892565b604082019050919050565b5f6020820190508181035f830152613919816138e0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61397a60258361341a565b915061398582613920565b604082019050919050565b5f6020820190508181035f8301526139a78161396e565b9050919050565b5f815190506139bc816134ee565b92915050565b5f602082840312156139d7576139d66134ba565b5b5f6139e4848285016139ae565b91505092915050565b5f604082019050613a005f8301856136d3565b613a0d60208301846136d3565b9392505050565b5f819050919050565b5f613a37613a32613a2d84613a14565b6135e7565b613518565b9050919050565b613a4781613a1d565b82525050565b5f60c082019050613a605f8301896136d3565b613a6d602083018861365b565b613a7a6040830187613a3e565b613a876060830186613a3e565b613a9460808301856136d3565b613aa160a083018461365b565b979650505050505050565b5f81519050613aba81613521565b92915050565b5f805f60608486031215613ad757613ad66134ba565b5b5f613ae486828701613aac565b9350506020613af586828701613aac565b9250506040613b0686828701613aac565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613b6a60268361341a565b9150613b7582613b10565b604082019050919050565b5f6020820190508181035f830152613b9781613b5e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613bf860248361341a565b9150613c0382613b9e565b604082019050919050565b5f6020820190508181035f830152613c2581613bec565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c8660228361341a565b9150613c9182613c2c565b604082019050919050565b5f6020820190508181035f830152613cb381613c7a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613cee601d8361341a565b9150613cf982613cba565b602082019050919050565b5f6020820190508181035f830152613d1b81613ce2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613d7c60258361341a565b9150613d8782613d22565b604082019050919050565b5f6020820190508181035f830152613da981613d70565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e0a60238361341a565b9150613e1582613db0565b604082019050919050565b5f6020820190508181035f830152613e3781613dfe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613e7260168361341a565b9150613e7d82613e3e565b602082019050919050565b5f6020820190508181035f830152613e9f81613e66565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f613f2660498361341a565b9150613f3182613ea6565b606082019050919050565b5f6020820190508181035f830152613f5381613f1a565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613fb460358361341a565b9150613fbf82613f5a565b604082019050919050565b5f6020820190508181035f830152613fe181613fa8565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f61401c60138361341a565b915061402782613fe8565b602082019050919050565b5f6020820190508181035f83015261404981614010565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f6140aa60368361341a565b91506140b582614050565b604082019050919050565b5f6020820190508181035f8301526140d78161409e565b9050919050565b5f6140e882613518565b91506140f383613518565b925082820261410181613518565b9150828204841483151761411857614117613832565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61415682613518565b915061416183613518565b9250826141715761417061411f565b5b828204905092915050565b5f61418682613518565b915061419183613518565b92508282039050818111156141a9576141a8613832565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6141e360208361341a565b91506141ee826141af565b602082019050919050565b5f6020820190508181035f830152614210816141d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61427160268361341a565b915061427c82614217565b604082019050919050565b5f6020820190508181035f83015261429e81614265565b9050919050565b5f81905092915050565b50565b5f6142bd5f836142a5565b91506142c8826142af565b5f82019050919050565b5f6142dc826142b2565b9150819050919050565b5f6060820190506142f95f83018661365b565b614306602083018561365b565b614313604083018461365b565b949350505050565b5f602082840312156143305761432f6134ba565b5b5f61433d84828501613aac565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6143d2816134dd565b82525050565b5f6143e383836143c9565b60208301905092915050565b5f602082019050919050565b5f614405826143a0565b61440f81856143aa565b935061441a836143ba565b805f5b8381101561444a57815161443188826143d8565b975061443c836143ef565b92505060018101905061441d565b5085935050505092915050565b5f60a08201905061446a5f83018861365b565b6144776020830187613a3e565b818103604083015261448981866143fb565b905061449860608301856136d3565b6144a5608083018461365b565b969550505050505056fea26469706673582212205714898b32081c99989c6923741cd37178d778af35b3860d8e679355828c69f264736f6c63430008140033

Deployed Bytecode Sourcemap

35163:14750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13180:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15597:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36694:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35238:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14300:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36453:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36276:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36200:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36160;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16403:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35321:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36359:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36319:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14142:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17107:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35286:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35635:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39187:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36015:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35715:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14471:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8422:103;;;;;;;;;;;;;:::i;:::-;;39365:160;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38818:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35565:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35908;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47446:155;;;;;;;;;;;;;:::i;:::-;;7774:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35602:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36915:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36050:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13399:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47609:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35982:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36510:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36240:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36126:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17873:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36415:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14820:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35675:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38997:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35826:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35450:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35874:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15101:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35492:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46654:784;;;:::i;:::-;;35945:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8680:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36088:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35532:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13180:100;13234:13;13267:5;13260:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13180:100;:::o;15597:226::-;15705:4;15722:13;15738:12;:10;:12::i;:::-;15722:28;;15761:32;15770:5;15777:7;15786:6;15761:8;:32::i;:::-;15811:4;15804:11;;;15597:226;;;;:::o;36694:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;35238:41::-;;;;;;;;;;;;;:::o;14300:108::-;14361:7;14388:12;;14381:19;;14300:108;:::o;36453:50::-;;;;:::o;36276:36::-;;;;:::o;36200:33::-;;;;:::o;36160:::-;;;;:::o;16403:295::-;16534:4;16551:15;16569:12;:10;:12::i;:::-;16551:30;;16592:38;16608:4;16614:7;16623:6;16592:15;:38::i;:::-;16641:27;16651:4;16657:2;16661:6;16641:9;:27::i;:::-;16686:4;16679:11;;;16403:295;;;;;:::o;35321:53::-;35367:6;35321:53;:::o;36359:49::-;;;;:::o;36319:33::-;;;;;;;;;;;;;:::o;14142:93::-;14200:5;14225:2;14218:9;;14142:93;:::o;17107:263::-;17220:4;17237:13;17253:12;:10;:12::i;:::-;17237:28;;17276:64;17285:5;17292:7;17329:10;17301:25;17311:5;17318:7;17301:9;:25::i;:::-;:38;;;;:::i;:::-;17276:8;:64::i;:::-;17358:4;17351:11;;;17107:263;;;;:::o;35286:28::-;;;;;;;;;;;;;:::o;35635:33::-;;;;;;;;;;;;;:::o;39187:126::-;39253:4;39277:19;:28;39297:7;39277:28;;;;;;;;;;;;;;;;;;;;;;;;;39270:35;;39187:126;;;:::o;36015:28::-;;;;:::o;35715:31::-;;;;;;;;;;;;;:::o;14471:143::-;14561:7;14588:9;:18;14598:7;14588:18;;;;;;;;;;;;;;;;14581:25;;14471:143;;;:::o;8422:103::-;7660:13;:11;:13::i;:::-;8487:30:::1;8514:1;8487:18;:30::i;:::-;8422:103::o:0;39365:160::-;39417:4;7660:13;:11;:13::i;:::-;39451:5:::1;39434:14;;:22;;;;;;;;;;;;;;;;;;39490:5;39467:20;;:28;;;;;;;;;;;;;;;;;;39513:4;39506:11;;39365:160:::0;:::o;38818:169::-;7660:13;:11;:13::i;:::-;38975:4:::1;38933:31;:39;38965:6;38933:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38818:169:::0;;:::o;35565:30::-;;;;;;;;;;;;;:::o;35908:::-;;;;:::o;47446:155::-;7660:13;:11;:13::i;:::-;47515:4:::1;47501:11;;:18;;;;;;;;;;;;;;;;;;47546:4;47530:13;;:20;;;;;;;;;;;;;;;;;;47578:15;47561:14;:32;;;;47446:155::o:0;7774:87::-;7820:7;7847:6;;;;;;;;;;;7840:13;;7774:87;:::o;35602:24::-;;;;;;;;;;;;;:::o;36915:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;36050:31::-;;;;:::o;13399:104::-;13455:13;13488:7;13481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13399:104;:::o;47609:305::-;7660:13;:11;:13::i;:::-;47755::::1;;;;;;;;;;;47747:21;;:4;:21;;::::0;47725:127:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47865:41;47894:4;47900:5;47865:28;:41::i;:::-;47609:305:::0;;:::o;35982:24::-;;;;:::o;36510:35::-;;;;:::o;36240:27::-;;;;:::o;36126:25::-;;;;:::o;17873:498::-;17991:4;18008:13;18024:12;:10;:12::i;:::-;18008:28;;18047:24;18074:25;18084:5;18091:7;18074:9;:25::i;:::-;18047:52;;18152:15;18132:16;:35;;18110:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;18268:60;18277:5;18284:7;18312:15;18293:16;:34;18268:8;:60::i;:::-;18359:4;18352:11;;;;17873:498;;;;:::o;36415:29::-;;;;:::o;14820:218::-;14924:4;14941:13;14957:12;:10;:12::i;:::-;14941:28;;14980;14990:5;14997:2;15001:6;14980:9;:28::i;:::-;15026:4;15019:11;;;14820:218;;;;:::o;35675:33::-;;;;;;;;;;;;;:::o;38997:182::-;7660:13;:11;:13::i;:::-;39113:8:::1;39082:19;:28;39102:7;39082:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39153:7;39137:34;;;39162:8;39137:34;;;;;;:::i;:::-;;;;;;;;38997:182:::0;;:::o;35826:39::-;;;;;;;;;;;;;:::o;35450:35::-;;;;:::o;35874:27::-;;;;:::o;15101:176::-;15215:7;15242:11;:18;15254:5;15242:18;;;;;;;;;;;;;;;:27;15261:7;15242:27;;;;;;;;;;;;;;;;15235:34;;15101:176;;;;:::o;35492:33::-;;;;:::o;46654:784::-;7660:13;:11;:13::i;:::-;46719:35:::1;46790:42;46719:124;;46854:58;46888:16;46907:4;46854:25;:58::i;:::-;46941:16;46923:15;;:34;;;;;;;;;;;;;;;;;;47002:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46984:70;;;47063:4;47070:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46984:110;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46968:13;;:126;;;;;;;;;;;;;;;;;;47105:55;47139:13;;;;;;;;;;;47155:4;47105:25;:55::i;:::-;47171:58;47208:13;;;;;;;;;;;47224:4;47171:28;:58::i;:::-;47240:62;47257:4;47272:15;;;;;;;;;;;47299:1;47290:11;47240:8;:62::i;:::-;47313:15;;;;;;;;;;;:31;;;47352:9;47371:4;47377:24;47395:4;47377:9;:24::i;:::-;47402:1;47404::::0;47406:7:::1;:5;:7::i;:::-;47414:15;47313:117;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46708:730;46654:784::o:0;35945:30::-;;;;:::o;8680:238::-;7660:13;:11;:13::i;:::-;8803:1:::1;8783:22;;:8;:22;;::::0;8761:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8882:28;8901:8;8882:18;:28::i;:::-;8680:238:::0;:::o;36088:31::-;;;;:::o;35532:24::-;;;;:::o;6965:98::-;7018:7;7045:10;7038:17;;6965:98;:::o;21997:380::-;22150:1;22133:19;;:5;:19;;;22125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22231:1;22212:21;;:7;:21;;;22204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22315:6;22285:11;:18;22297:5;22285:18;;;;;;;;;;;;;;;:27;22304:7;22285:27;;;;;;;;;;;;;;;:36;;;;22353:7;22337:32;;22346:5;22337:32;;;22362:6;22337:32;;;;;;:::i;:::-;;;;;;;;21997:380;;;:::o;22668:502::-;22803:24;22830:25;22840:5;22847:7;22830:9;:25::i;:::-;22803:52;;22890:17;22870:16;:37;22866:297;;22970:6;22950:16;:26;;22924:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;23085:51;23094:5;23101:7;23129:6;23110:16;:25;23085:8;:51::i;:::-;22866:297;22792:378;22668:502;;;:::o;40058:5154::-;40206:1;40190:18;;:4;:18;;;40182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40283:1;40269:16;;:2;:16;;;40261:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:1;40342:6;:11;40338:93;;40370:28;40386:4;40392:2;40396:1;40370:15;:28::i;:::-;40413:7;;40338:93;40447:14;;;;;;;;;;;40443:2485;;;40508:7;:5;:7::i;:::-;40500:15;;:4;:15;;;;:49;;;;;40542:7;:5;:7::i;:::-;40536:13;;:2;:13;;;;40500:49;:86;;;;;40584:1;40570:16;;:2;:16;;;;40500:86;:128;;;;;40621:6;40607:21;;:2;:21;;;;40500:128;:158;;;;;40650:8;;;;;;;;;;;40649:9;40500:158;40478:2439;;;40698:13;;;;;;;;;;;40693:223;;40770:19;:25;40790:4;40770:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40799:19;:23;40819:2;40799:23;;;;;;;;;;;;;;;;;;;;;;;;;40770:52;40736:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40693:223;41072:20;;;;;;;;;;;41068:641;;;41153:7;:5;:7::i;:::-;41147:13;;:2;:13;;;;:72;;;;;41203:15;;;;;;;;;;;41189:30;;:2;:30;;;;41147:72;:129;;;;;41262:13;;;;;;;;;;;41248:28;;:2;:28;;;;41147:129;41117:573;;;41440:12;41365:28;:39;41394:9;41365:39;;;;;;;;;;;;;;;;:87;41327:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;41654:12;41612:28;:39;41641:9;41612:39;;;;;;;;;;;;;;;:54;;;;41117:573;41068:641;41783:24;:30;41808:4;41783:30;;;;;;;;;;;;;;;;;;;;;;;;;:91;;;;;41839:31;:35;41871:2;41839:35;;;;;;;;;;;;;;;;;;;;;;;;;41838:36;41783:91;41757:1145;;;41961:20;;41951:6;:30;;41917:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42169:9;;42152:13;42162:2;42152:9;:13::i;:::-;42143:6;:22;;;;:::i;:::-;:35;;42109:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41757:1145;;;42347:24;:28;42372:2;42347:28;;;;;;;;;;;;;;;;;;;;;;;;;:91;;;;;42401:31;:37;42433:4;42401:37;;;;;;;;;;;;;;;;;;;;;;;;;42400:38;42347:91;42321:581;;;42525:20;;42515:6;:30;;42481:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42321:581;;;42682:31;:35;42714:2;42682:35;;;;;;;;;;;;;;;;;;;;;;;;;42677:225;;42802:9;;42785:13;42795:2;42785:9;:13::i;:::-;42776:6;:22;;;;:::i;:::-;:35;;42742:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42677:225;42321:581;41757:1145;40478:2439;40443:2485;42940:12;42955:24;:30;42980:4;42955:30;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;;42995:15;;;;;;;;;;;42989:21;;:2;:21;;;42955:55;42940:70;;43026:7;43023:52;;;43035:40;43050:4;43056:2;43060:14;43035;:40::i;:::-;43023:52;43100:9;;;;;;;;;;;:20;;;;43113:7;43100:20;43088:9;;:32;;;;;;;;;;;;;;;;;;43151:11;;;;;;;;;;;:37;;;;;43180:8;;;;;;;;;;;43179:9;43151:37;:85;;;;;43206:24;:30;43231:4;43206:30;;;;;;;;;;;;;;;;;;;;;;;;;43205:31;43151:85;:128;;;;;43254:19;:25;43274:4;43254:25;;;;;;;;;;;;;;;;;;;;;;;;;43253:26;43151:128;:169;;;;;43297:19;:23;43317:2;43297:23;;;;;;;;;;;;;;;;;;;;;;;;;43296:24;43151:169;43133:310;;;43358:4;43347:8;;:15;;;;;;;;;;;;;;;;;;43379:19;43388:9;;;;;;;;;;;43379:8;:19::i;:::-;43426:5;43415:8;;:16;;;;;;;;;;;;;;;;;;43133:310;43474:8;;;;;;;;;;;43473:9;:54;;;;;43499:24;:28;43524:2;43499:28;;;;;;;;;;;;;;;;;;;;;;;;;43473:54;:84;;;;;43544:13;;;;;;;;;;;43473:84;:152;;;;;43610:15;;43593:14;;:32;;;;:::i;:::-;43574:15;:51;;43473:152;:195;;;;;43643:19;:25;43663:4;43643:25;;;;;;;;;;;;;;;;;;;;;;;;;43642:26;43473:195;43455:281;;;43695:29;:27;:29::i;:::-;;43455:281;43748:12;43764:8;;;;;;;;;;;43763:9;43748:24;;43874:19;:25;43894:4;43874:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43903:19;:23;43923:2;43903:23;;;;;;;;;;;;;;;;;;;;;;;;;43874:52;43870:100;;;43953:5;43943:15;;43870:100;43982:12;44087:7;44083:1076;;;44139:24;:28;44164:2;44139:28;;;;;;;;;;;;;;;;;;;;;;;;;44135:875;;;44207:1;44191:13;;:17;44188:352;;;44239:34;44269:3;44239:25;44250:13;;44239:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44232:41;;44347:13;;44327:16;;44320:4;:23;;;;:::i;:::-;44319:41;;;;:::i;:::-;44297:18;;:63;;;;;;;:::i;:::-;;;;;;;;44421:13;;44407:10;;44400:4;:17;;;;:::i;:::-;44399:35;;;;:::i;:::-;44383:12;;:51;;;;;;;:::i;:::-;;;;;;;;44507:13;;44487:16;;44480:4;:23;;;;:::i;:::-;44479:41;;;;:::i;:::-;44457:18;;:63;;;;;;;:::i;:::-;;;;;;;;44188:352;44135:875;;;44601:24;:30;44626:4;44601:30;;;;;;;;;;;;;;;;;;;;;;;;;44597:413;;;44670:1;44655:12;;:16;44652:343;;;44702:33;44731:3;44702:24;44713:12;;44702:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44695:40;;44807:12;;44788:15;;44781:4;:22;;;;:::i;:::-;44780:39;;;;:::i;:::-;44758:18;;:61;;;;;;;:::i;:::-;;;;;;;;44879:12;;44866:9;;44859:4;:16;;;;:::i;:::-;44858:33;;;;:::i;:::-;44842:12;;:49;;;;;;;:::i;:::-;;;;;;;;44963:12;;44944:15;;44937:4;:22;;;;:::i;:::-;44936:39;;;;:::i;:::-;44914:18;;:61;;;;;;;:::i;:::-;;;;;;;;44652:343;44597:413;44135:875;45037:1;45030:4;:8;45026:91;;;45059:42;45075:4;45089;45096;45059:15;:42::i;:::-;45026:91;45143:4;45133:14;;;;;:::i;:::-;;;44083:1076;45171:33;45187:4;45193:2;45197:6;45171:15;:33::i;:::-;40171:5041;;;40058:5154;;;;:::o;7939:132::-;8014:12;:10;:12::i;:::-;8003:23;;:7;:5;:7::i;:::-;:23;;;7995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7939:132::o;9078:191::-;9152:16;9171:6;;;;;;;;;;;9152:25;;9197:8;9188:6;;:17;;;;;;;;;;;;;;;;;;9252:8;9221:40;;9242:8;9221:40;;;;;;;;;;;;9141:128;9078:191;:::o;47922:187::-;48038:5;48005:24;:30;48030:4;48005:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;48095:5;48061:40;;48089:4;48061:40;;;;;;;;;;;;47922:187;;:::o;18841:877::-;18988:1;18972:18;;:4;:18;;;18964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19065:1;19051:16;;:2;:16;;;19043:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19120:38;19141:4;19147:2;19151:6;19120:20;:38::i;:::-;19171:19;19193:9;:15;19203:4;19193:15;;;;;;;;;;;;;;;;19171:37;;19256:6;19241:11;:21;;19219:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;19396:6;19382:11;:20;19364:9;:15;19374:4;19364:15;;;;;;;;;;;;;;;:38;;;;19599:6;19582:9;:13;19592:2;19582:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;19649:2;19634:26;;19643:4;19634:26;;;19653:6;19634:26;;;;;;:::i;:::-;;;;;;;;19673:37;19693:4;19699:2;19703:6;19673:19;:37::i;:::-;18953:765;18841:877;;;:::o;48117:1793::-;48166:23;48192:24;48210:4;48192:9;:24::i;:::-;48166:50;;48227:25;48323:12;;48289:18;;48255;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48227:108;;48346:12;48362:5;48361:6;48346:21;;48377:7;48369:16;;;;;;48421:1;48402:15;:20;:46;;;;48447:1;48426:17;:22;48402:46;48398:85;;;48465:7;;;;;48398:85;48538:2;48517:18;;:23;;;;:::i;:::-;48499:15;:41;48495:115;;;48596:2;48575:18;;:23;;;;:::i;:::-;48557:41;;48495:115;48671:23;48784:1;48751:17;48716:18;;48698:15;:36;;;;:::i;:::-;48697:71;;;;:::i;:::-;:88;;;;:::i;:::-;48671:114;;48796:26;48825:36;48845:15;48825;:19;;:36;;;;:::i;:::-;48796:65;;48874:25;48902:21;48874:49;;48936:36;48953:18;48936:16;:36::i;:::-;48985:18;49006:44;49032:17;49006:21;:25;;:44;;;;:::i;:::-;48985:65;;49063:23;49089:81;49142:17;49089:34;49104:18;;49089:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49063:107;;49181:17;49201:51;49234:17;49201:28;49216:12;;49201:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49181:71;;49265:23;49322:9;49304:15;49291:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49265:66;;49365:1;49344:18;:22;;;;49398:1;49377:18;:22;;;;49425:1;49410:12;:16;;;;49461:15;;;;;;;;;;;49453:29;;49490:9;49453:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49439:65;;;;;49539:1;49521:15;:19;:42;;;;;49562:1;49544:15;:19;49521:42;49517:278;;;49580:46;49593:15;49610;49580:12;:46::i;:::-;49646:137;49679:18;49716:15;49750:18;;49646:137;;;;;;;;:::i;:::-;;;;;;;;49517:278;49829:9;;;;;;;;;;;49821:23;;49866:21;49821:81;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49807:95;;;;;48155:1755;;;;;;;;;;48117:1793;;:::o;45858:788::-;45915:4;45949:15;45932:14;:32;;;;46019:28;46050:4;:14;;;46065:13;;;;;;;;;;;46050:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46019:60;;46129:20;46152:77;46213:5;46152:42;46177:16;;46152:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;46129:100;;46349:1;46334:12;:16;46330:110;;;46367:61;46383:13;;;;;;;;;;;46406:6;46415:12;46367:15;:61::i;:::-;46330:110;46515:19;46552:13;;;;;;;;;;;46515:51;;46577:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46604:12;;;;;;;;;;46634:4;46627:11;;;;;45858:788;:::o;3322:98::-;3380:7;3411:1;3407;:5;;;;:::i;:::-;3400:12;;3322:98;;;;:::o;3721:::-;3779:7;3810:1;3806;:5;;;;:::i;:::-;3799:12;;3721:98;;;;:::o;23770:125::-;;;;:::o;24499:124::-;;;;:::o;2965:98::-;3023:7;3054:1;3050;:5;;;;:::i;:::-;3043:12;;2965:98;;;;:::o;45257:589::-;45383:21;45421:1;45407:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45383:40;;45452:4;45434;45439:1;45434:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45478:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45468:4;45473:1;45468:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45513:62;45530:4;45545:15;;;;;;;;;;;45563:11;45513:8;:62::i;:::-;45614:15;;;;;;;;;;;:66;;;45695:11;45721:1;45765:4;45792;45812:15;45614:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45312:534;45257:589;:::o;39533:517::-;39681:62;39698:4;39713:15;;;;;;;;;;;39731:11;39681:8;:62::i;:::-;39786:15;;;;;;;;;;;:31;;;39825:9;39858:4;39878:11;39904:1;39947;35367:6;40016:15;39786:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39533:517;;:::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:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:118::-;5823:24;5841:5;5823:24;:::i;:::-;5818:3;5811:37;5736:118;;:::o;5860:222::-;5953:4;5991:2;5980:9;5976:18;5968:26;;6004:71;6072:1;6061:9;6057:17;6048:6;6004:71;:::i;:::-;5860:222;;;;:::o;6088:86::-;6123:7;6163:4;6156:5;6152:16;6141:27;;6088:86;;;:::o;6180:112::-;6263:22;6279:5;6263:22;:::i;:::-;6258:3;6251:35;6180:112;;:::o;6298:214::-;6387:4;6425:2;6414:9;6410:18;6402:26;;6438:67;6502:1;6491:9;6487:17;6478:6;6438:67;:::i;:::-;6298:214;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:243::-;8768:34;8764:1;8756:6;8752:14;8745:58;8837:26;8832:2;8824:6;8820:15;8813:51;8628:243;:::o;8877:366::-;9019:3;9040:67;9104:2;9099:3;9040:67;:::i;:::-;9033:74;;9116:93;9205:3;9116:93;:::i;:::-;9234:2;9229:3;9225:12;9218:19;;8877:366;;;:::o;9249:419::-;9415:4;9453:2;9442:9;9438:18;9430:26;;9502:9;9496:4;9492:20;9488:1;9477:9;9473:17;9466:47;9530:131;9656:4;9530:131;:::i;:::-;9522:139;;9249:419;;;:::o;9674:224::-;9814:34;9810:1;9802:6;9798:14;9791:58;9883:7;9878:2;9870:6;9866:15;9859:32;9674:224;:::o;9904:366::-;10046:3;10067:67;10131:2;10126:3;10067:67;:::i;:::-;10060:74;;10143:93;10232:3;10143:93;:::i;:::-;10261:2;10256:3;10252:12;10245:19;;9904:366;;;:::o;10276:419::-;10442:4;10480:2;10469:9;10465:18;10457:26;;10529:9;10523:4;10519:20;10515:1;10504:9;10500:17;10493:47;10557:131;10683:4;10557:131;:::i;:::-;10549:139;;10276:419;;;:::o;10701:143::-;10758:5;10789:6;10783:13;10774:22;;10805:33;10832:5;10805:33;:::i;:::-;10701:143;;;;:::o;10850:351::-;10920:6;10969:2;10957:9;10948:7;10944:23;10940:32;10937:119;;;10975:79;;:::i;:::-;10937:119;11095:1;11120:64;11176:7;11167:6;11156:9;11152:22;11120:64;:::i;:::-;11110:74;;11066:128;10850:351;;;;:::o;11207:332::-;11328:4;11366:2;11355:9;11351:18;11343:26;;11379:71;11447:1;11436:9;11432:17;11423:6;11379:71;:::i;:::-;11460:72;11528:2;11517:9;11513:18;11504:6;11460:72;:::i;:::-;11207:332;;;;;:::o;11545:85::-;11590:7;11619:5;11608:16;;11545:85;;;:::o;11636:158::-;11694:9;11727:61;11745:42;11754:32;11780:5;11754:32;:::i;:::-;11745:42;:::i;:::-;11727:61;:::i;:::-;11714:74;;11636:158;;;:::o;11800:147::-;11895:45;11934:5;11895:45;:::i;:::-;11890:3;11883:58;11800:147;;:::o;11953:807::-;12202:4;12240:3;12229:9;12225:19;12217:27;;12254:71;12322:1;12311:9;12307:17;12298:6;12254:71;:::i;:::-;12335:72;12403:2;12392:9;12388:18;12379:6;12335:72;:::i;:::-;12417:80;12493:2;12482:9;12478:18;12469:6;12417:80;:::i;:::-;12507;12583:2;12572:9;12568:18;12559:6;12507:80;:::i;:::-;12597:73;12665:3;12654:9;12650:19;12641:6;12597:73;:::i;:::-;12680;12748:3;12737:9;12733:19;12724:6;12680:73;:::i;:::-;11953:807;;;;;;;;;:::o;12766:143::-;12823:5;12854:6;12848:13;12839:22;;12870:33;12897:5;12870:33;:::i;:::-;12766:143;;;;:::o;12915:663::-;13003:6;13011;13019;13068:2;13056:9;13047:7;13043:23;13039:32;13036:119;;;13074:79;;:::i;:::-;13036:119;13194:1;13219:64;13275:7;13266:6;13255:9;13251:22;13219:64;:::i;:::-;13209:74;;13165:128;13332:2;13358:64;13414:7;13405:6;13394:9;13390:22;13358:64;:::i;:::-;13348:74;;13303:129;13471:2;13497:64;13553:7;13544:6;13533:9;13529:22;13497:64;:::i;:::-;13487:74;;13442:129;12915:663;;;;;:::o;13584:225::-;13724:34;13720:1;13712:6;13708:14;13701:58;13793:8;13788:2;13780:6;13776:15;13769:33;13584:225;:::o;13815:366::-;13957:3;13978:67;14042:2;14037:3;13978:67;:::i;:::-;13971:74;;14054:93;14143:3;14054:93;:::i;:::-;14172:2;14167:3;14163:12;14156:19;;13815:366;;;:::o;14187:419::-;14353:4;14391:2;14380:9;14376:18;14368:26;;14440:9;14434:4;14430:20;14426:1;14415:9;14411:17;14404:47;14468:131;14594:4;14468:131;:::i;:::-;14460:139;;14187:419;;;:::o;14612:223::-;14752:34;14748:1;14740:6;14736:14;14729:58;14821:6;14816:2;14808:6;14804:15;14797:31;14612:223;:::o;14841:366::-;14983:3;15004:67;15068:2;15063:3;15004:67;:::i;:::-;14997:74;;15080:93;15169:3;15080:93;:::i;:::-;15198:2;15193:3;15189:12;15182:19;;14841:366;;;:::o;15213:419::-;15379:4;15417:2;15406:9;15402:18;15394:26;;15466:9;15460:4;15456:20;15452:1;15441:9;15437:17;15430:47;15494:131;15620:4;15494:131;:::i;:::-;15486:139;;15213:419;;;:::o;15638:221::-;15778:34;15774:1;15766:6;15762:14;15755:58;15847:4;15842:2;15834:6;15830:15;15823:29;15638:221;:::o;15865:366::-;16007:3;16028:67;16092:2;16087:3;16028:67;:::i;:::-;16021:74;;16104:93;16193:3;16104:93;:::i;:::-;16222:2;16217:3;16213:12;16206:19;;15865:366;;;:::o;16237:419::-;16403:4;16441:2;16430:9;16426:18;16418:26;;16490:9;16484:4;16480:20;16476:1;16465:9;16461:17;16454:47;16518:131;16644:4;16518:131;:::i;:::-;16510:139;;16237:419;;;:::o;16662:179::-;16802:31;16798:1;16790:6;16786:14;16779:55;16662:179;:::o;16847:366::-;16989:3;17010:67;17074:2;17069:3;17010:67;:::i;:::-;17003:74;;17086:93;17175:3;17086:93;:::i;:::-;17204:2;17199:3;17195:12;17188:19;;16847:366;;;:::o;17219:419::-;17385:4;17423:2;17412:9;17408:18;17400:26;;17472:9;17466:4;17462:20;17458:1;17447:9;17443:17;17436:47;17500:131;17626:4;17500:131;:::i;:::-;17492:139;;17219:419;;;:::o;17644:224::-;17784:34;17780:1;17772:6;17768:14;17761:58;17853:7;17848:2;17840:6;17836:15;17829:32;17644:224;:::o;17874:366::-;18016:3;18037:67;18101:2;18096:3;18037:67;:::i;:::-;18030:74;;18113:93;18202:3;18113:93;:::i;:::-;18231:2;18226:3;18222:12;18215:19;;17874:366;;;:::o;18246:419::-;18412:4;18450:2;18439:9;18435:18;18427:26;;18499:9;18493:4;18489:20;18485:1;18474:9;18470:17;18463:47;18527:131;18653:4;18527:131;:::i;:::-;18519:139;;18246:419;;;:::o;18671:222::-;18811:34;18807:1;18799:6;18795:14;18788:58;18880:5;18875:2;18867:6;18863:15;18856:30;18671:222;:::o;18899:366::-;19041:3;19062:67;19126:2;19121:3;19062:67;:::i;:::-;19055:74;;19138:93;19227:3;19138:93;:::i;:::-;19256:2;19251:3;19247:12;19240:19;;18899:366;;;:::o;19271:419::-;19437:4;19475:2;19464:9;19460:18;19452:26;;19524:9;19518:4;19514:20;19510:1;19499:9;19495:17;19488:47;19552:131;19678:4;19552:131;:::i;:::-;19544:139;;19271:419;;;:::o;19696:172::-;19836:24;19832:1;19824:6;19820:14;19813:48;19696:172;:::o;19874:366::-;20016:3;20037:67;20101:2;20096:3;20037:67;:::i;:::-;20030:74;;20113:93;20202:3;20113:93;:::i;:::-;20231:2;20226:3;20222:12;20215:19;;19874:366;;;:::o;20246:419::-;20412:4;20450:2;20439:9;20435:18;20427:26;;20499:9;20493:4;20489:20;20485:1;20474:9;20470:17;20463:47;20527:131;20653:4;20527:131;:::i;:::-;20519:139;;20246:419;;;:::o;20671:297::-;20811:34;20807:1;20799:6;20795:14;20788:58;20880:34;20875:2;20867:6;20863:15;20856:59;20949:11;20944:2;20936:6;20932:15;20925:36;20671:297;:::o;20974:366::-;21116:3;21137:67;21201:2;21196:3;21137:67;:::i;:::-;21130:74;;21213:93;21302:3;21213:93;:::i;:::-;21331:2;21326:3;21322:12;21315:19;;20974:366;;;:::o;21346:419::-;21512:4;21550:2;21539:9;21535:18;21527:26;;21599:9;21593:4;21589:20;21585:1;21574:9;21570:17;21563:47;21627:131;21753:4;21627:131;:::i;:::-;21619:139;;21346:419;;;:::o;21771:240::-;21911:34;21907:1;21899:6;21895:14;21888:58;21980:23;21975:2;21967:6;21963:15;21956:48;21771:240;:::o;22017:366::-;22159:3;22180:67;22244:2;22239:3;22180:67;:::i;:::-;22173:74;;22256:93;22345:3;22256:93;:::i;:::-;22374:2;22369:3;22365:12;22358:19;;22017:366;;;:::o;22389:419::-;22555:4;22593:2;22582:9;22578:18;22570:26;;22642:9;22636:4;22632:20;22628:1;22617:9;22613:17;22606:47;22670:131;22796:4;22670:131;:::i;:::-;22662:139;;22389:419;;;:::o;22814:169::-;22954:21;22950:1;22942:6;22938:14;22931:45;22814:169;:::o;22989:366::-;23131:3;23152:67;23216:2;23211:3;23152:67;:::i;:::-;23145:74;;23228:93;23317:3;23228:93;:::i;:::-;23346:2;23341:3;23337:12;23330:19;;22989:366;;;:::o;23361:419::-;23527:4;23565:2;23554:9;23550:18;23542:26;;23614:9;23608:4;23604:20;23600:1;23589:9;23585:17;23578:47;23642:131;23768:4;23642:131;:::i;:::-;23634:139;;23361:419;;;:::o;23786:241::-;23926:34;23922:1;23914:6;23910:14;23903:58;23995:24;23990:2;23982:6;23978:15;23971:49;23786:241;:::o;24033:366::-;24175:3;24196:67;24260:2;24255:3;24196:67;:::i;:::-;24189:74;;24272:93;24361:3;24272:93;:::i;:::-;24390:2;24385:3;24381:12;24374:19;;24033:366;;;:::o;24405:419::-;24571:4;24609:2;24598:9;24594:18;24586:26;;24658:9;24652:4;24648:20;24644:1;24633:9;24629:17;24622:47;24686:131;24812:4;24686:131;:::i;:::-;24678:139;;24405:419;;;:::o;24830:410::-;24870:7;24893:20;24911:1;24893:20;:::i;:::-;24888:25;;24927:20;24945:1;24927:20;:::i;:::-;24922:25;;24982:1;24979;24975:9;25004:30;25022:11;25004:30;:::i;:::-;24993:41;;25183:1;25174:7;25170:15;25167:1;25164:22;25144:1;25137:9;25117:83;25094:139;;25213:18;;:::i;:::-;25094:139;24878:362;24830:410;;;;:::o;25246:180::-;25294:77;25291:1;25284:88;25391:4;25388:1;25381:15;25415:4;25412:1;25405:15;25432:185;25472:1;25489:20;25507:1;25489:20;:::i;:::-;25484:25;;25523:20;25541:1;25523:20;:::i;:::-;25518:25;;25562:1;25552:35;;25567:18;;:::i;:::-;25552:35;25609:1;25606;25602:9;25597:14;;25432:185;;;;:::o;25623:194::-;25663:4;25683:20;25701:1;25683:20;:::i;:::-;25678:25;;25717:20;25735:1;25717:20;:::i;:::-;25712:25;;25761:1;25758;25754:9;25746:17;;25785:1;25779:4;25776:11;25773:37;;;25790:18;;:::i;:::-;25773:37;25623:194;;;;:::o;25823:182::-;25963:34;25959:1;25951:6;25947:14;25940:58;25823:182;:::o;26011:366::-;26153:3;26174:67;26238:2;26233:3;26174:67;:::i;:::-;26167:74;;26250:93;26339:3;26250:93;:::i;:::-;26368:2;26363:3;26359:12;26352:19;;26011:366;;;:::o;26383:419::-;26549:4;26587:2;26576:9;26572:18;26564:26;;26636:9;26630:4;26626:20;26622:1;26611:9;26607:17;26600:47;26664:131;26790:4;26664:131;:::i;:::-;26656:139;;26383:419;;;:::o;26808:225::-;26948:34;26944:1;26936:6;26932:14;26925:58;27017:8;27012:2;27004:6;27000:15;26993:33;26808:225;:::o;27039:366::-;27181:3;27202:67;27266:2;27261:3;27202:67;:::i;:::-;27195:74;;27278:93;27367:3;27278:93;:::i;:::-;27396:2;27391:3;27387:12;27380:19;;27039:366;;;:::o;27411:419::-;27577:4;27615:2;27604:9;27600:18;27592:26;;27664:9;27658:4;27654:20;27650:1;27639:9;27635:17;27628:47;27692:131;27818:4;27692:131;:::i;:::-;27684:139;;27411:419;;;:::o;27836:147::-;27937:11;27974:3;27959:18;;27836:147;;;;:::o;27989:114::-;;:::o;28109:398::-;28268:3;28289:83;28370:1;28365:3;28289:83;:::i;:::-;28282:90;;28381:93;28470:3;28381:93;:::i;:::-;28499:1;28494:3;28490:11;28483:18;;28109:398;;;:::o;28513:379::-;28697:3;28719:147;28862:3;28719:147;:::i;:::-;28712:154;;28883:3;28876:10;;28513:379;;;:::o;28898:442::-;29047:4;29085:2;29074:9;29070:18;29062:26;;29098:71;29166:1;29155:9;29151:17;29142:6;29098:71;:::i;:::-;29179:72;29247:2;29236:9;29232:18;29223:6;29179:72;:::i;:::-;29261;29329:2;29318:9;29314:18;29305:6;29261:72;:::i;:::-;28898:442;;;;;;:::o;29346:351::-;29416:6;29465:2;29453:9;29444:7;29440:23;29436:32;29433:119;;;29471:79;;:::i;:::-;29433:119;29591:1;29616:64;29672:7;29663:6;29652:9;29648:22;29616:64;:::i;:::-;29606:74;;29562:128;29346:351;;;;:::o;29703:180::-;29751:77;29748:1;29741:88;29848:4;29845:1;29838:15;29872:4;29869:1;29862:15;29889:180;29937:77;29934:1;29927:88;30034:4;30031:1;30024:15;30058:4;30055:1;30048:15;30075:114;30142:6;30176:5;30170:12;30160:22;;30075:114;;;:::o;30195:184::-;30294:11;30328:6;30323:3;30316:19;30368:4;30363:3;30359:14;30344:29;;30195:184;;;;:::o;30385:132::-;30452:4;30475:3;30467:11;;30505:4;30500:3;30496:14;30488:22;;30385:132;;;:::o;30523:108::-;30600:24;30618:5;30600:24;:::i;:::-;30595:3;30588:37;30523:108;;:::o;30637:179::-;30706:10;30727:46;30769:3;30761:6;30727:46;:::i;:::-;30805:4;30800:3;30796:14;30782:28;;30637:179;;;;:::o;30822:113::-;30892:4;30924;30919:3;30915:14;30907:22;;30822:113;;;:::o;30971:732::-;31090:3;31119:54;31167:5;31119:54;:::i;:::-;31189:86;31268:6;31263:3;31189:86;:::i;:::-;31182:93;;31299:56;31349:5;31299:56;:::i;:::-;31378:7;31409:1;31394:284;31419:6;31416:1;31413:13;31394:284;;;31495:6;31489:13;31522:63;31581:3;31566:13;31522:63;:::i;:::-;31515:70;;31608:60;31661:6;31608:60;:::i;:::-;31598:70;;31454:224;31441:1;31438;31434:9;31429:14;;31394:284;;;31398:14;31694:3;31687:10;;31095:608;;;30971:732;;;;:::o;31709:831::-;31972:4;32010:3;31999:9;31995:19;31987:27;;32024:71;32092:1;32081:9;32077:17;32068:6;32024:71;:::i;:::-;32105:80;32181:2;32170:9;32166:18;32157:6;32105:80;:::i;:::-;32232:9;32226:4;32222:20;32217:2;32206:9;32202:18;32195:48;32260:108;32363:4;32354:6;32260:108;:::i;:::-;32252:116;;32378:72;32446:2;32435:9;32431:18;32422:6;32378:72;:::i;:::-;32460:73;32528:3;32517:9;32513:19;32504:6;32460:73;:::i;:::-;31709:831;;;;;;;;:::o

Swarm Source

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